diff options
author | ms236b <ms236b@att.com> | 2019-05-06 15:08:57 -0400 |
---|---|---|
committer | ms236b <ms236b@att.com> | 2019-05-06 15:09:37 -0400 |
commit | 69d07a42dff8b0ed5f8239ea71a775575e4ea2fb (patch) | |
tree | b4210e7d51772e746813e4f5505f3442d924be58 | |
parent | 406ad8928f66e1ba3df51cb9d2e597e987c24a3c (diff) |
Got rid of non needed stuff from pom
Got rid of the non neded stuff from pom for bp gen
Issue-ID: DCAEGEN2-1125
Change-Id: I1564ffce6ceee413a5c5938b4b2297187f25e9ca
Signed-off-by: ms236b <ms236b@att.com>
-rw-r--r-- | blueprint-generator/pom.xml | 40 | ||||
-rw-r--r-- | pom.xml | 18 |
2 files changed, 10 insertions, 48 deletions
diff --git a/blueprint-generator/pom.xml b/blueprint-generator/pom.xml index 4d0253b..f3e94e0 100644 --- a/blueprint-generator/pom.xml +++ b/blueprint-generator/pom.xml @@ -44,35 +44,8 @@ </properties> <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <source>1.7</source> - <target>1.7</target> - </configuration> - <version>2.0.2</version> - </plugin> + <plugins> <!-- the following plugins are invoked from oparent, we do not need them --> - <plugin> - <groupId>org.sonatype.plugins</groupId> - <artifactId>nexus-staging-maven-plugin</artifactId> - <version>1.6.7</version> - <configuration> - <skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo> - <skip>false</skip> - </configuration> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-deploy-plugin</artifactId> - <!-- This version supports the "deployAtEnd" parameter --> - <version>2.8</version> - <configuration> - <skip>true</skip> - </configuration> - </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4.1</version> @@ -163,17 +136,6 @@ </plugins> </reporting> - <distributionManagement> - <snapshotRepository> - <id>ecomp-snapshots</id> - <url>https://nexus.onap.org/content/repositories/snapshots/</url> - </snapshotRepository> - <repository> - <id>ecomp-staging</id> - <url>https://nexus.onap.org/content/groups/staging/</url> - </repository> - </distributionManagement> - <dependencies> <dependency> @@ -50,7 +50,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <finalName>${project.artifactId}-${project.version}</finalName> <pluginManagement> <plugins> - <!-- the following plugins are invoked from oparent, we do not need them --> + <!-- the following plugins are invoked from oparent, we do not need them <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> @@ -63,15 +63,15 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> - <!-- This version supports the "deployAtEnd" parameter --> + This version supports the "deployAtEnd" parameter <version>2.8</version> <configuration> <skip>true</skip> </configuration> - </plugin> + </plugin> --> <!-- first disable the default Java plugins at various stages --> <!-- maven-resources-plugin is called during "*resource" phases by default behavior. it prepares - the resources dir. we do not need it --> + the resources dir. we do not need it <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> @@ -79,8 +79,8 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <configuration> <skip>true</skip> </configuration> - </plugin> - <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it --> + </plugin> --> + <!-- maven-compiler-plugin is called during "compile" phases by default behavior. we do not need it <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> @@ -88,7 +88,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <configuration> <skip>true</skip> </configuration> - </plugin> + </plugin> --> <!-- maven-jar-plugin is called during "compile" phase by default behavior. we do not need it --> <!-- <plugin> @@ -103,7 +103,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. </executions> </plugin> --> <!-- maven-install-plugin is called during "install" phase by default behavior. it tries to copy stuff under - target dir to ~/.m2. we do not need it --> + target dir to ~/.m2. we do not need it <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> @@ -111,7 +111,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property. <configuration> <skip>true</skip> </configuration> - </plugin> + </plugin> --> <!-- maven-surefire-plugin is called during "test" phase by default behavior. it triggers junit test. we do not need it --> <plugin> |