diff options
author | 2018-04-13 15:33:16 -0400 | |
---|---|---|
committer | 2018-04-13 16:27:12 -0400 | |
commit | 246e24e50f5581a6fb62c4c073cb07af987c4d4a (patch) | |
tree | cc97a44f1b10f413b1200e4477ff4c9138ae6979 | |
parent | 15843133cb53eaa3c0ffbdcbdbfc581819a5fcdc (diff) |
pom, new modules changes
Issue-ID: PORTAL-254
portal/SDK release 2.3.0, domain, sdk aaf modules
Change-Id: Ifa3779bba9f3f3129f883b0445da9e5cc21477e8
Signed-off-by: Kishore Reddy, Gujja (kg811t) <kg811t@research.att.com>
-rw-r--r-- | ecomp-sdk/epsdk-aaf/pom.xml | 6 | ||||
-rw-r--r-- | ecomp-sdk/epsdk-domain/pom.xml | 13 | ||||
-rw-r--r-- | ecomp-sdk/pom.xml | 1 |
3 files changed, 20 insertions, 0 deletions
diff --git a/ecomp-sdk/epsdk-aaf/pom.xml b/ecomp-sdk/epsdk-aaf/pom.xml index 9faa1131..f09f7a6a 100644 --- a/ecomp-sdk/epsdk-aaf/pom.xml +++ b/ecomp-sdk/epsdk-aaf/pom.xml @@ -2,6 +2,12 @@ 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> + <groupId>org.onap.portal.sdk</groupId> + <artifactId>epsdk-project</artifactId> + <version>2.3.0-SNAPSHOT</version> + </parent> + <groupId>org.onap.portal.sdk</groupId> <artifactId>epsdk-ext-auth</artifactId> <version>2.3.0-SNAPSHOT</version> diff --git a/ecomp-sdk/epsdk-domain/pom.xml b/ecomp-sdk/epsdk-domain/pom.xml index 6c9f8210..1e01888a 100644 --- a/ecomp-sdk/epsdk-domain/pom.xml +++ b/ecomp-sdk/epsdk-domain/pom.xml @@ -2,6 +2,12 @@ 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> + <groupId>org.onap.portal.sdk</groupId> + <artifactId>epsdk-project</artifactId> + <version>2.3.0-SNAPSHOT</version> + </parent> + <groupId>org.onap.portal.sdk</groupId> <artifactId>epsdk-domain</artifactId> <version>2.3.0-SNAPSHOT</version> @@ -40,6 +46,13 @@ <version>1.10.19</version> <scope>test</scope> </dependency> + <!-- Jacoco for offline instrumentation --> + <dependency> + <groupId>org.jacoco</groupId> + <artifactId>org.jacoco.agent</artifactId> + <version>${jacoco.version}</version> + <classifier>runtime</classifier> + </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> diff --git a/ecomp-sdk/pom.xml b/ecomp-sdk/pom.xml index da248a8b..7a2b7dbc 100644 --- a/ecomp-sdk/pom.xml +++ b/ecomp-sdk/pom.xml @@ -24,6 +24,7 @@ <module>epsdk-core</module> <module>epsdk-analytics</module> <module>epsdk-domain</module> + <module>epsdk-aaf</module> <module>epsdk-music</module> <module>epsdk-workflow</module> <module>epsdk-app-common</module> |