diff options
Diffstat (limited to 'ecomp-sdk')
-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> |