throws ConsumerException
{
this.repository = repository;
- log.info( "Beginning scan of repository [" + this.repository.getId() + "]" );
+ log.info( "Beginning scan of repository [{}]", this.repository.getId() );
repositorySession = repositorySessionFactory.createSession();
}
public void processFile( String path, boolean executeOnEntireRepo )
throws ConsumerException
{
- log.info( "Processing entry [" + path + "] from repository [" + this.repository.getId() + "]" );
+ log.info( "Processing entry [{}] from repository [{}]", path, this.repository.getId() );
try
{
consumer.beginScan( testRepository, new Date() );
consumer.processFile( "org/simple/test/testartifact/testartifact/1.0/testartifact-1.0.pom" );
consumer.processFile( "org/simple/test/testartifact/testartifact/1.1/testartifact-1.1.pom" );
-
- verify( metadataRepository ).getArtifacts( testRepository.getId(), "org.simple.test.testartifact",
- "testartifact", "1.0" );
- verify( metadataRepository ).getArtifacts( testRepository.getId(), "org.simple.test.testartifact",
- "testartifact", "1.1" );
+
}
}