summaryrefslogtreecommitdiffstats
path: root/appc-adapters/appc-rest-adapter/appc-rest-adapter-installer
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2018-07-30 14:35:31 -0700
committerPatrick Brady <pb071s@att.com>2018-08-13 10:54:14 -0700
commit7f383f98c874d5918fa6e55597f30432b13a658d (patch)
treeea30979921816f4c43efb1e2ad2fddc79bbb84a0 /appc-adapters/appc-rest-adapter/appc-rest-adapter-installer
parent9d7412db1c2cfb9c05a8d381dc7c71829291d81b (diff)
Karaf 4 for first few features
appc-metric appc-dmaap-adapter appc-chef-adapter appc-netconf-adapter appc-rest-adapter Change-Id: I1d5a8e39cac7be74b05a0782f0971f8d08c8162d Signed-off-by: Patrick Brady <pb071s@att.com> Issue-ID: APPC-1029
Diffstat (limited to 'appc-adapters/appc-rest-adapter/appc-rest-adapter-installer')
-rw-r--r--appc-adapters/appc-rest-adapter/appc-rest-adapter-installer/pom.xml116
1 files changed, 112 insertions, 4 deletions
diff --git a/appc-adapters/appc-rest-adapter/appc-rest-adapter-installer/pom.xml b/appc-adapters/appc-rest-adapter/appc-rest-adapter-installer/pom.xml
index 11051b8d3..21d701df8 100644
--- a/appc-adapters/appc-rest-adapter/appc-rest-adapter-installer/pom.xml
+++ b/appc-adapters/appc-rest-adapter/appc-rest-adapter-installer/pom.xml
@@ -22,10 +22,12 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <artifactId>appc-rest-adapter</artifactId>
- <groupId>org.onap.appc</groupId>
+ <artifactId>odlparent-lite</artifactId>
+ <groupId>org.onap.appc.parent</groupId>
<version>1.4.0-SNAPSHOT</version>
+ <relativePath />
</parent>
+ <groupId>org.onap.appc</groupId>
<artifactId>appc-rest-adapter-installer</artifactId>
<name>rest Adapter - Karaf Installer</name>
<packaging>pom</packaging>
@@ -33,15 +35,16 @@
<properties>
<application.name>appc-rest-adapter</application.name>
<features.boot>appc-rest-adapter</features.boot>
- <features.repositories>mvn:org.onap.appc/appc-rest-adapter-features/${project.version}/xml/features</features.repositories>
+ <features.repositories>mvn:org.onap.appc/onap-appc-rest-adapter/${project.version}/xml/features</features.repositories>
<include.transitive.dependencies>false</include.transitive.dependencies>
</properties>
<dependencies>
<dependency>
<groupId>org.onap.appc</groupId>
- <artifactId>appc-rest-adapter-features</artifactId>
+ <artifactId>onap-appc-rest-adapter</artifactId>
<classifier>features</classifier>
+ <version>${project.version}</version>
<type>xml</type>
<exclusions>
<exclusion>
@@ -145,6 +148,111 @@
</execution>
</executions>
</plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy</id>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <phase>prepare-package</phase>
+ <configuration>
+ <transitive>false</transitive>
+ <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
+ <overWriteReleases>false</overWriteReleases>
+ <overWriteSnapshots>true</overWriteSnapshots>
+ <overWriteIfNewer>true</overWriteIfNewer>
+ <useRepositoryLayout>true</useRepositoryLayout>
+ <addParentPoms>false</addParentPoms>
+ <copyPom>false</copyPom>
+ <excludeGroupIds>org.opendaylight</excludeGroupIds>
+ <scope>provided</scope>
+ <artifactItems>
+ <artifactItem>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ <version>2.8.4</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/com/fasterxml/jackson/core/jackson-databind/2.8.4</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ <version>2.8.4</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/com/fasterxml/jackson/core/jackson-core/2.8.4</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ <version>2.8.4</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/com/fasterxml/jackson/core/jackson-annotations/2.8.4</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>com.fasterxml.jackson.jaxrs</groupId>
+ <artifactId>jackson-jaxrs-base</artifactId>
+ <version>2.8.4</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.8.4</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>com.fasterxml.jackson.jaxrs</groupId>
+ <artifactId>jackson-jaxrs-json-provider</artifactId>
+ <version>2.8.4</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.8.4</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.glassfish.jersey.core</groupId>
+ <artifactId>jersey-server</artifactId>
+ <version>2.25.1</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/org/glassfish/jersey/core/jersey-server/2.25.1</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>com.ning</groupId>
+ <artifactId>async-http-client</artifactId>
+ <version>1.9.39</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/com/ning/async-http-client/1.9.39</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>io.netty</groupId>
+ <artifactId>netty</artifactId>
+ <version>3.10.5.Final</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/io/netty/netty/3.10.5.Final</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.glassfish.grizzly</groupId>
+ <artifactId>grizzly-http-servlet</artifactId>
+ <version>2.3.28</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/org/glassfish/grizzly/grizzly-http-servlet/2.3.28</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.glassfish.grizzly</groupId>
+ <artifactId>grizzly-http-server</artifactId>
+ <version>2.3.28</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/org/glassfish/grizzly/grizzly-http-server/2.3.28</outputDirectory>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.glassfish.grizzly</groupId>
+ <artifactId>grizzly-http</artifactId>
+ <version>2.3.28</version>
+ <type>jar</type>
+ <outputDirectory>${project.build.directory}/assembly/system/org/glassfish/grizzly/grizzly-http/2.3.28</outputDirectory>
+ </artifactItem>
+ </artifactItems>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>