Fix ansible-adapter dependencies 89/44389/1
authorTimoney, Dan (dt5972) <dt5972@att.com>
Tue, 24 Apr 2018 15:10:08 +0000 (11:10 -0400)
committerTimoney, Dan (dt5972) <dt5972@att.com>
Tue, 24 Apr 2018 15:10:08 +0000 (11:10 -0400)
Ansible-adapter pom included unnecessary dependencies, which caused problems
when attempting to install in karaf.

Change-Id: I7017a25a4d45ab8a75dd7599d10e466ef16d2e6f
Issue-ID: CCSDK-251
Signed-off-by: Timoney, Dan (dt5972) <dt5972@att.com>
ansible-adapter/ansible-adapter-bundle/pom.xml
ansible-adapter/ansible-adapter-installer/pom.xml
ansible-adapter/ansible-adapter-installer/src/main/resources/scripts/install-feature.sh

index 2a8c744..912ec47 100644 (file)
             <version>${apache.httpcomponents.client.version}</version>
         </dependency>
 
-        <!-- http://mvnrepository.com/artifact/org.apache.httpcomponents/httpcore -->
-
-
-        <dependency>
-            <groupId>javax</groupId>
-            <artifactId>javaee-api</artifactId>
-            <version>7.0</version>
-        </dependency>
-
 
         <!-- Needed to run test cases -->
         <dependency>
             <groupId>org.glassfish.jersey.core</groupId>
             <artifactId>jersey-common</artifactId>
             <version>2.9.1</version>
+            <scope>test</scope>
         </dependency>
 
         <dependency>
             <groupId>org.codehaus.jackson</groupId>
             <artifactId>jackson-jaxrs</artifactId>
             <version>1.9.13</version>
+            <scope>test</scope>
         </dependency>
 
         <dependency>
@@ -76,6 +69,7 @@
         <dependency>
             <groupId>org.mockito</groupId>
             <artifactId>mockito-core</artifactId>
+            <scope>test</scope>
         </dependency>
         <dependency>
             <groupId>org.onap.ccsdk.sli.core</groupId>
             <artifactId>guava</artifactId>
         </dependency>
 
-        <!-- <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId>
-            <version>2.8.0</version> </dependency> -->
 
     </dependencies>
 
 
-<!--     <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <extensions>true</extensions>
-                <configuration>
-                    <instructions>
-                        <Bundle-SymbolicName>appc-ansible-adapter</Bundle-SymbolicName>
-                        <Bundle-Activator>org.onap.appc.adapter.ansible.AnsibleActivator</Bundle-Activator>
-                        <Export-Package>org.onap.appc.adapter.ansible</Export-Package>
-                        <Import-Package>org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*,
-                            javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.*,
-                            javax.security.*</Import-Package>
-                        <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis</Embed-Dependency>
-                        <Embed-Transitive>true</Embed-Transitive>
-                    </instructions>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build> -->
 </project>
index 79448f8..daac66e 100644 (file)
             <artifactId>ansible-adapter-bundle</artifactId>
             <version>${project.version}</version>
         </dependency>
+
+        <dependency>
+            <groupId>javax</groupId>
+            <artifactId>javaee-api</artifactId>
+            <version>7.0</version>
+        </dependency>
     </dependencies>
     <build>
         <plugins>
index 05b4ae3..c8214c5 100644 (file)
@@ -26,7 +26,6 @@
 
 ODL_HOME=${ODL_HOME:-/opt/opendaylight/current}
 ODL_KARAF_CLIENT=${ODL_KARAF_CLIENT:-${ODL_HOME}/bin/client}
-ODL_KARAF_CLIENT_OPTS=${ODL_KARAF_CLIENT_OPTS:-"-u karaf"}
 INSTALLERDIR=$(dirname $0)
 
 REPOZIP=${INSTALLERDIR}/${features.boot}-${project.version}.zip
@@ -39,5 +38,5 @@ else
        exit 1
 fi
 
-${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:repo-add ${features.repositories}
-${ODL_KARAF_CLIENT} ${ODL_KARAF_CLIENT_OPTS} feature:install ${features.boot}
+${ODL_KARAF_CLIENT} feature:repo-add ${features.repositories}
+${ODL_KARAF_CLIENT} feature:install ${features.boot}