summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorSingal, Kapil (ks220y) <ks220y@att.com>2019-10-01 22:31:50 -0400
committerSingal, Kapil (ks220y) <ks220y@att.com>2019-10-01 22:31:50 -0400
commit2e8a4da68b26ffb5bf812fce9ebdace4b39d1c50 (patch)
treede3ffff45b0aaaee82239518b390c8f12173a1e1 /pom.xml
parent632a1f3cc13664249eb6f7f95d19ded659d1b98b (diff)
Restructuring POM's and Template
Running mvn tidy:pom to format/restructure pom's content. Removig plugin to format pom as all child poms are not having reference to root as parent pom and maven-tidy-plugin is not being executed to format pom Issue-ID: CCSDK-1764 Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com> Change-Id: I18fd59ae94fdded11f3cb62647d5b3518bfe051a
Diffstat (limited to 'pom.xml')
-rwxr-xr-xpom.xml44
1 files changed, 0 insertions, 44 deletions
diff --git a/pom.xml b/pom.xml
index d64cf26a..195d6686 100755
--- a/pom.xml
+++ b/pom.xml
@@ -32,10 +32,6 @@
<onap.nexus.host>nexus.onap.org</onap.nexus.host>
<onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
<onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
-
- <!-- Properties for POM Format -->
- <format.skipValidate>false</format.skipValidate>
- <format.skipExecute>true</format.skipExecute>
</properties>
<build>
@@ -48,46 +44,6 @@
<processAllModules>true</processAllModules>
</configuration>
</plugin>
-
- <!-- Plugin to Format/Validate POM Files -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>tidy-maven-plugin</artifactId>
- <version>1.1.0</version>
- <executions>
- <execution>
- <id>format-pom</id>
- <phase>process-sources</phase>
- <goals>
- <goal>pom</goal>
- </goals>
- <configuration>
- <skip>${format.skipExecute}</skip>
- </configuration>
- </execution>
- <execution>
- <id>validate-pom</id>
- <phase>validate</phase>
- <goals>
- <goal>check</goal>
- </goals>
- <configuration>
- <skip>${format.skipValidate}</skip>
- </configuration>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
-
- <profiles>
- <!-- Profile to format skip validate or execute -->
- <profile>
- <id>format</id>
- <properties>
- <format.skipValidate>true</format.skipValidate>
- <format.skipExecute>false</format.skipExecute>
- </properties>
- </profile>
- </profiles>
</project>