From: Stephen Kitt Date: Tue, 13 Oct 2015 08:49:33 +0000 (+0200) Subject: Add missing dependencies X-Git-Tag: release/beryllium~233 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=c8496d1d8fb7d902eed8e73e9b08de8705290269 Add missing dependencies pax-url-aether provides javax.inject and commons-codec, but they need to be declared separately for correctness and to allow upgrades to newer versions of pax-url-aether. com.google.inject.Inject can be replaced by javax.inject.Inject. Change-Id: I0a1da43faf0345bd71c2737caaa840c396bc60ab Signed-off-by: Stephen Kitt --- diff --git a/opendaylight/md-sal/sal-binding-it/pom.xml b/opendaylight/md-sal/sal-binding-it/pom.xml index 04283e75c3..5b404c7f25 100644 --- a/opendaylight/md-sal/sal-binding-it/pom.xml +++ b/opendaylight/md-sal/sal-binding-it/pom.xml @@ -140,6 +140,11 @@ org.opendaylight.mdsal.model opendaylight-l2-types + + javax.inject + javax.inject + 1 + diff --git a/opendaylight/md-sal/sal-binding-it/src/test/java/org/opendaylight/controller/test/sal/binding/it/DataServiceIT.java b/opendaylight/md-sal/sal-binding-it/src/test/java/org/opendaylight/controller/test/sal/binding/it/DataServiceIT.java index 52aba32a28..b73cb42198 100644 --- a/opendaylight/md-sal/sal-binding-it/src/test/java/org/opendaylight/controller/test/sal/binding/it/DataServiceIT.java +++ b/opendaylight/md-sal/sal-binding-it/src/test/java/org/opendaylight/controller/test/sal/binding/it/DataServiceIT.java @@ -11,7 +11,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; -import com.google.inject.Inject; +import javax.inject.Inject; import java.util.concurrent.Future; import org.junit.Test; import org.opendaylight.controller.md.sal.common.api.TransactionStatus; diff --git a/opendaylight/md-sal/samples/toaster-it/pom.xml b/opendaylight/md-sal/samples/toaster-it/pom.xml index e8ddc8ba9a..c897e07362 100644 --- a/opendaylight/md-sal/samples/toaster-it/pom.xml +++ b/opendaylight/md-sal/samples/toaster-it/pom.xml @@ -65,6 +65,11 @@ ${exam.version} test + + commons-codec + commons-codec + test +