Do not test bundle activation of maven plugins 53/13853/3
authorRobert Varga <rovarga@cisco.com>
Wed, 24 Dec 2014 20:52:37 +0000 (21:52 +0100)
committerRobert Varga <rovarga@cisco.com>
Wed, 24 Dec 2014 21:17:00 +0000 (22:17 +0100)
maven-sal-api-gen-plugin is intended for maven use only. Do not test it
for startability.

Change-Id: Ic40f77c7f65bd27b429680b5dc9064d42b9dab18
Signed-off-by: Robert Varga <rovarga@cisco.com>
integration-test/bundle-test/pom.xml
integration-test/bundle-test/src/test/java/org/opendaylight/yangtools/bundle/test/BundleStartTest.java

index 4fde8986ea2d7ece186c3cb3ac40836b24232f3f..5767124eb29c32376d380b0dfbc0706aa9650f1c 100644 (file)
             <groupId>ch.qos.logback</groupId>
             <artifactId>logback-classic</artifactId>
         </dependency>
-        <dependency>
-            <groupId>org.sonatype.plexus</groupId>
-            <artifactId>plexus-build-api</artifactId>
-        </dependency>
         <dependency>
             <groupId>org.codehaus.plexus</groupId>
             <artifactId>plexus-slf4j-logging</artifactId>
@@ -57,7 +53,7 @@
         </dependency>
         <dependency>
             <groupId>org.opendaylight.yangtools</groupId>
-            <artifactId>maven-sal-api-gen-plugin</artifactId>
+            <artifactId>binding-generator-impl</artifactId>
         </dependency>
         <dependency>
             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
index 1b5e1d85483f4222e557d5d6dacf62f5e0189f38..f0bbe6d77c3c3e1369bba8336780de74a6f5b10e 100644 (file)
@@ -43,8 +43,6 @@ public class BundleStartTest {
         options.add(mavenBundle("org.opendaylight.yangtools.thirdparty", "antlr4-runtime-osgi-nohead")
                 .versionAsInProject());
         options.add(mavenBundle("org.opendaylight.yangtools.thirdparty", "xtend-lib-osgi").versionAsInProject());
-        options.add(mavenBundle("org.sonatype.plexus", "plexus-build-api").versionAsInProject());
-        options.add(mavenBundle("org.codehaus.plexus", "plexus-slf4j-logging").versionAsInProject());
         options.add(mavenBundle("org.javassist", "javassist").versionAsInProject());
 
         options.add(mavenBundle(GROUP, "concepts").versionAsInProject());
@@ -64,10 +62,8 @@ public class BundleStartTest {
         options.add(mavenBundle(GROUP, "binding-generator-impl").versionAsInProject());
         options.add(mavenBundle(GROUP, "binding-generator-spi").versionAsInProject());
         options.add(mavenBundle(GROUP, "binding-generator-util").versionAsInProject());
-        options.add(mavenBundle(GROUP, "binding-java-api-generator").versionAsInProject());
         options.add(mavenBundle(GROUP, "binding-model-api").versionAsInProject());
         options.add(mavenBundle(GROUP, "binding-type-provider").versionAsInProject());
-        options.add(mavenBundle(GROUP, "maven-sal-api-gen-plugin").versionAsInProject());
 
         options.add(junitBundles());
         return options;
@@ -96,9 +92,7 @@ public class BundleStartTest {
         testBundle("binding-generator-spi");
         testBundle("binding-generator-util");
         testBundle("binding-model-api");
-        testBundle("binding-java-api-generator");
         testBundle("binding-type-provider");
-        testBundle("maven-sal-api-gen-plugin");
     }
 
     private void testBundle(String name) throws BundleException {