Skip to content

Commit 7bdd2b3

Browse files
bump Galley dependency version to 1.22-SNAPSHOT (#2518)
o11yphant has been removed completely from galley, now we bump up the version and modified some function call base on it
1 parent 63c31bf commit 7bdd2b3

5 files changed

Lines changed: 13 additions & 4 deletions

File tree

addons/koji/common/src/test/java/org/commonjava/indy/koji/content/KojiMavenMetadataProviderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ private void initKojiClient( String exchangeName, boolean verifyArtifacts )
333333
GalleyCore galley = new GalleyCoreBuilder(
334334
new FileCacheProviderFactory( temp.newFolder( "cache" ) ) ).withEnabledTransports(
335335
new HttpClientTransport( new HttpImpl( new org.commonjava.maven.galley.auth.MemoryPasswordManager() ),
336-
new IndyObjectMapper( true ), new GlobalHttpConfiguration().getGlobalProxyConfig(), null, null ) ).build();
336+
new IndyObjectMapper( true ), new GlobalHttpConfiguration().getGlobalProxyConfig()) ).build();
337337

338338
WeftExecutorService rescanService =
339339
new PoolWeftExecutorService( "test-rescan-executor", (ThreadPoolExecutor) Executors.newCachedThreadPool(), 2, 10f, false,null, null );

addons/pkg-maven/common/src/test/java/org/commonjava/indy/pkg/maven/content/MavenContentFilteringTransferDecoratorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ private Transfer getTestHttpTransfer(final String path, final String content) th
156156
assertThat( transfer.exists(), equalTo( false ) );
157157

158158
HttpDownload dl = new HttpDownload( url, location, transfer, new HashMap<>(), new EventMetadata(),
159-
fixture.getHttp().getHttp(), new ObjectMapper(), true, metricRegistry, metricConfig, new ArrayList<>(), new NoOpProxySitesCache() );
159+
fixture.getHttp().getHttp(), new ObjectMapper(), true, new ArrayList<>(), new NoOpProxySitesCache() );
160160

161161
return dl.call().getTransfer();
162162
}

bindings/jaxrs/src/main/java/org/commonjava/indy/core/bind/jaxrs/admin/ContentAdminResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import io.swagger.annotations.ApiOperation;
2020
import io.swagger.annotations.ApiResponse;
2121
import io.swagger.annotations.ApiResponses;
22-
import org.apache.commons.lang.StringUtils;
22+
import org.apache.commons.lang3.StringUtils;
2323
import org.commonjava.indy.IndyWorkflowException;
2424
import org.commonjava.indy.bind.jaxrs.IndyResources;
2525
import org.commonjava.indy.bind.jaxrs.util.REST;

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
<indyModelVersion>1.5</indyModelVersion>
109109
<indyClientVersion>3.4.4</indyClientVersion>
110110
<atlasVersion>1.1.4</atlasVersion>
111-
<galleyVersion>1.20</galleyVersion>
111+
<galleyVersion>1.22-SNAPSHOT</galleyVersion>
112112
<weftVersion>1.24</weftVersion>
113113
<webdavVersion>3.2.1</webdavVersion>
114114
<!-- TODO: partyline is still needed for standalone mode, may be removed in future -->
@@ -1429,6 +1429,11 @@
14291429
<artifactId>o11yphant-metrics-common</artifactId>
14301430
<version>${o11yphantVersion}</version>
14311431
</dependency>
1432+
<dependency>
1433+
<groupId>org.commonjava.util</groupId>
1434+
<artifactId>o11yphant-metrics-core</artifactId>
1435+
<version>${o11yphantVersion}</version>
1436+
</dependency>
14321437

14331438
<!-- propulsor dependencies -->
14341439
<dependency>

subsys/metrics/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@
3131
<groupId>org.commonjava.util</groupId>
3232
<artifactId>o11yphant-metrics-common</artifactId>
3333
</dependency>
34+
<dependency>
35+
<groupId>org.commonjava.util</groupId>
36+
<artifactId>o11yphant-metrics-core</artifactId>
37+
</dependency>
3438
<dependency>
3539
<groupId>org.apache.commons</groupId>
3640
<artifactId>commons-lang3</artifactId>

0 commit comments

Comments
 (0)