clean leftover items in parent pom pre-release
snapshot dependencies are not permitted
it should an actual released version, or project.version
if the plan is to release it at the same time.
the maven version plugin was also left over from
previous oparent work
documenting accepted version of xml-apis.
Change-Id: I8b76bd9befdf69674aafe7b14bfbcc7d2f938062
Issue-ID: POLICY-404
Signed-off-by: Jorge Hernandez <jh1730@att.com>
diff --git a/api-state-management/pom.xml b/api-state-management/pom.xml
index f5c1e21..184a4f7 100644
--- a/api-state-management/pom.xml
+++ b/api-state-management/pom.xml
@@ -56,7 +56,7 @@
<dependency>
<groupId>org.onap.policy.common</groupId>
<artifactId>integrity-monitor</artifactId>
- <version>${common-modules.version}</version>
+ <version>${project.version}</version>
</dependency>
</dependencies>
</project>
diff --git a/feature-eelf/pom.xml b/feature-eelf/pom.xml
index 17a9de9..53dd79f 100644
--- a/feature-eelf/pom.xml
+++ b/feature-eelf/pom.xml
@@ -105,7 +105,7 @@
<dependency>
<groupId>org.onap.policy.common</groupId>
<artifactId>ONAP-Logging</artifactId>
- <version>${common-modules.version}</version>
+ <version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.onap.policy.drools-pdp</groupId>
diff --git a/feature-state-management/pom.xml b/feature-state-management/pom.xml
index db5afe6..1341d0c 100644
--- a/feature-state-management/pom.xml
+++ b/feature-state-management/pom.xml
@@ -125,7 +125,7 @@
<dependency>
<groupId>org.onap.policy.common</groupId>
<artifactId>integrity-monitor</artifactId>
- <version>${common-modules.version}</version>
+ <version>${project.version}</version>
</dependency>
<!-- Need to pull into assembly for IntegrityMonitor -->
<dependency>
diff --git a/pom.xml b/pom.xml
index 15ff07b..d00a285 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,7 +40,6 @@
<properties>
<project.source.version>1.8</project.source.version>
<project.target.version>1.8</project.target.version>
- <common-modules.version>1.1.0-SNAPSHOT</common-modules.version>
<dmaap.version>0.2.12</dmaap.version>
<cambria.version>0.0.1</cambria.version>
<jersey.version>2.25.1</jersey.version>
@@ -56,6 +55,7 @@
<hibernate.commons.annotations.version>5.0.1.Final</hibernate.commons.annotations.version>
<commons.io.version>2.5</commons.io.version>
<guava.version>23.0</guava.version>
+ <xml.apis.version>1.4.01</xml.apis.version>
<nexusproxy>https://nexus.onap.org</nexusproxy>
<sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
@@ -204,25 +204,14 @@
<artifactId>commons-io</artifactId>
<version>${commons.io.version}</version>
</dependency>
+ <dependency>
+ <groupId>xml-apis</groupId>
+ <artifactId>xml-apis</artifactId>
+ <version>${xml.apis.version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.onap.oparent</groupId>
- <artifactId>version-check-maven-plugin</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <scope>provided</scope>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>*</groupId>
- <artifactId>*</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
-
<build>
<plugins>
<plugin>
@@ -283,17 +272,6 @@
<artifactId>sonar-maven-plugin</artifactId>
</plugin>
- <plugin>
- <groupId>org.onap.oparent</groupId>
- <artifactId>version-check-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>version-check</id>
- <phase/>
- </execution>
- </executions>
- </plugin>
-
</plugins>
<pluginManagement>
<plugins>