diff options
author | Gautam Shah <gautams@amdocs.com> | 2018-04-11 19:55:29 +0530 |
---|---|---|
committer | GAUTAMS <gautams@amdocs.com> | 2018-04-17 10:18:53 +0530 |
commit | 09a41f5bfa6008ce545f8745306145ad9264103b (patch) | |
tree | de4f6301dacc2bc03c9289f67a805835a4c0c0ec /openecomp-be/tools/zusammen-tools/pom.xml | |
parent | 4d0fac7c8057d2732203fe9f219059945aa9750c (diff) |
Reducing onboarding backend maven build time
Reducing onboarding backend maven build time
Change-Id: Iab7af70c0e9f60b8a50bef7937e802df5be89fd0
Issue-ID: SDC-1189
Signed-off-by: GAUTAMS <gautams@amdocs.com>
Diffstat (limited to 'openecomp-be/tools/zusammen-tools/pom.xml')
-rw-r--r-- | openecomp-be/tools/zusammen-tools/pom.xml | 31 |
1 files changed, 7 insertions, 24 deletions
diff --git a/openecomp-be/tools/zusammen-tools/pom.xml b/openecomp-be/tools/zusammen-tools/pom.xml index aef0eb73ad..a1183b52ac 100644 --- a/openecomp-be/tools/zusammen-tools/pom.xml +++ b/openecomp-be/tools/zusammen-tools/pom.xml @@ -64,6 +64,12 @@ <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId> <version>${project.version}</version> </dependency> + <dependency> + <groupId>org.testng</groupId> + <artifactId>testng</artifactId> + <version>${testng.version}</version> + <scope>test</scope> + </dependency> </dependencies> <artifactId>openecomp-zusammen-tools</artifactId> <groupId>org.openecomp.sdc.core.tools</groupId> @@ -130,7 +136,6 @@ </executions> </plugin> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> @@ -157,26 +162,8 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> - <executions> - <execution> - <phase>package</phase> - </execution> - </executions> <configuration> - <archive> - <manifest> - <addClasspath>true</addClasspath> - <classpathLayoutType>custom</classpathLayoutType> - <customClasspathLayout> - lib/${artifact.artifactId}-${baseVersion}.${artifact.extension} - </customClasspathLayout> - <mainClass>org.openecomp.core.tools.main.ZusammenMainTool - </mainClass> - </manifest> - <manifestEntries> - <Class-Path>lib/</Class-Path> - </manifestEntries> - </archive> + <outputDirectory>${project.build.directory}/lib</outputDirectory> </configuration> </plugin> @@ -192,10 +179,6 @@ <fixcrlf srcdir="./" eol="unix" includes="zusammenMainTool.sh"/> </tasks> - <tasks> - <replace file="src/main/resources/zusammenMainTool.sh" token="1.0-SNAPSHOT" value="${project.version}"/> - </tasks> - </configuration> <goals> <goal>run</goal> |