mirror of https://github.com/apache/jclouds.git
Issue 767: change openstack-nova and downstream to logging module discovery
This commit is contained in:
parent
728f9612e0
commit
6918d1c448
|
@ -63,12 +63,6 @@
|
|||
<version>${project.version}</version>
|
||||
<type>test-jar</type>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.jclouds.driver</groupId>
|
||||
<artifactId>jclouds-log4j</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jclouds.labs</groupId>
|
||||
|
|
|
@ -78,12 +78,6 @@
|
|||
<version>${project.version}</version>
|
||||
<type>test-jar</type>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.jclouds.driver</groupId>
|
||||
<artifactId>jclouds-log4j</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jclouds.driver</groupId>
|
||||
|
|
|
@ -21,7 +21,6 @@ package org.jclouds.openstack.nova.v1_1.internal;
|
|||
import java.util.Properties;
|
||||
|
||||
import org.jclouds.compute.BaseVersionedServiceLiveTest;
|
||||
import org.jclouds.logging.slf4j.config.SLF4JLoggingModule;
|
||||
import org.jclouds.openstack.nova.v1_1.NovaAsyncClient;
|
||||
import org.jclouds.openstack.nova.v1_1.NovaClient;
|
||||
import org.jclouds.rest.RestContext;
|
||||
|
@ -52,7 +51,7 @@ public class BaseNovaClientLiveTest extends BaseVersionedServiceLiveTest {
|
|||
setupCredentials();
|
||||
Properties overrides = setupProperties();
|
||||
context = new RestContextFactory().createContext(provider, identity, credential,
|
||||
ImmutableSet.<Module> of(new SLF4JLoggingModule(), new SshjSshClientModule()), overrides);
|
||||
ImmutableSet.<Module> of(getLoggingModule(), new SshjSshClientModule()), overrides);
|
||||
}
|
||||
|
||||
@AfterGroups(groups = "live")
|
||||
|
|
Loading…
Reference in New Issue