Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ private void initKojiClient( String exchangeName, boolean verifyArtifacts )
GalleyCore galley = new GalleyCoreBuilder(
new FileCacheProviderFactory( temp.newFolder( "cache" ) ) ).withEnabledTransports(
new HttpClientTransport( new HttpImpl( new org.commonjava.maven.galley.auth.MemoryPasswordManager() ),
new IndyObjectMapper( true ), new GlobalHttpConfiguration().getGlobalProxyConfig(), null, null ) ).build();
new IndyObjectMapper( true ), new GlobalHttpConfiguration().getGlobalProxyConfig()) ).build();

WeftExecutorService rescanService =
new PoolWeftExecutorService( "test-rescan-executor", (ThreadPoolExecutor) Executors.newCachedThreadPool(), 2, 10f, false,null, null );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private Transfer getTestHttpTransfer(final String path, final String content) th
assertThat( transfer.exists(), equalTo( false ) );

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

return dl.call().getTransfer();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.commonjava.indy.IndyWorkflowException;
import org.commonjava.indy.bind.jaxrs.IndyResources;
import org.commonjava.indy.bind.jaxrs.util.REST;
Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
<indyModelVersion>1.5</indyModelVersion>
<indyClientVersion>3.4.4</indyClientVersion>
<atlasVersion>1.1.4</atlasVersion>
<galleyVersion>1.20</galleyVersion>
<galleyVersion>1.22-SNAPSHOT</galleyVersion>
<weftVersion>1.24</weftVersion>
<webdavVersion>3.2.1</webdavVersion>
<!-- TODO: partyline is still needed for standalone mode, may be removed in future -->
Expand Down Expand Up @@ -1429,6 +1429,11 @@
<artifactId>o11yphant-metrics-common</artifactId>
<version>${o11yphantVersion}</version>
</dependency>
<dependency>
<groupId>org.commonjava.util</groupId>
<artifactId>o11yphant-metrics-core</artifactId>
<version>${o11yphantVersion}</version>
</dependency>

<!-- propulsor dependencies -->
<dependency>
Expand Down
4 changes: 4 additions & 0 deletions subsys/metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
<groupId>org.commonjava.util</groupId>
<artifactId>o11yphant-metrics-common</artifactId>
</dependency>
<dependency>
<groupId>org.commonjava.util</groupId>
<artifactId>o11yphant-metrics-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
Expand Down
Loading