Clean up dependencies for London Release
[policy/gui.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index f76dee6..3aadfb6 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -1,8 +1,9 @@
 <!--
   ============LICENSE_START=======================================================
-  ONAP Policy Engine - Drools PDP
+  ONAP Policy GUI
   ================================================================================
-  Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+  Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
+  Modifications Copyright (C) 2020-2023 Nordix Foundation.
   ================================================================================
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   -->
 
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-       <modelVersion>4.0.0</modelVersion>
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
 
-       <parent>
-               <groupId>org.onap.oparent</groupId>
-               <artifactId>oparent</artifactId>
-               <version>1.1.0</version>
-               <relativePath />
-       </parent>
+    <parent>
+        <groupId>org.onap.policy.parent</groupId>
+        <artifactId>integration</artifactId>
+        <version>3.7.1-SNAPSHOT</version>
+        <relativePath />
+    </parent>
 
-       <groupId>org.onap.policy.gui</groupId>
-       <artifactId>gui</artifactId>
-       <version>1.1.0-SNAPSHOT</version>
+    <groupId>org.onap.policy.gui</groupId>
+    <artifactId>policy-gui</artifactId>
+    <version>2.4.1-SNAPSHOT</version>
 
-       <packaging>pom</packaging>
+    <packaging>pom</packaging>
 
-       <name>policy-gui</name>
-       <description>Code that all the Policy GUI's.</description>
+    <name>${project.artifactId}</name>
+    <description>Code for all the Policy GUI's.</description>
 
-       <properties>
-               <nexusproxy>https://nexus.onap.org</nexusproxy>
-                <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
-               <releases.path>content/repositories/releases/</releases.path>
-               <snapshots.path>content/repositories/snapshots/</snapshots.path>
-               <staging.path>content/repositories/staging/</staging.path>                
-       </properties>
+    <properties>
+        <policy.apex-pdp.version>2.9.1-SNAPSHOT</policy.apex-pdp.version>
+        <policy.common.version>1.12.1-SNAPSHOT</policy.common.version>
+        <policy.models.version>2.8.1-SNAPSHOT</policy.models.version>
+        <jacoco.dataFile>${project.basedir}/../../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
+        <sonar.javascript.lcov.reportPaths>${project.basedir}/target/code-coverage/lcov.info</sonar.javascript.lcov.reportPaths>
+    </properties>
 
-       <modules>
-       </modules>
+    <modules>
+        <module>gui-common</module>
+        <module>gui-editors</module>
+        <module>gui-clamp</module>
+        <module>gui-server</module>
+        <module>packages</module>
+    </modules>
 
-       <distributionManagement>
-               <site>
-                       <id>ecomp-site</id>
-                       <url>dav:${nexusproxy}${sitePath}</url>
-               </site>
-       </distributionManagement>
-
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.sonatype.plugins</groupId>
-                               <artifactId>nexus-staging-maven-plugin</artifactId>
-                               <extensions>true</extensions>
-                               <configuration>
-                                       <nexusUrl>${nexusproxy}</nexusUrl>
-                                       <stagingProfileId>176c31dfe190a</stagingProfileId>
-                                       <serverId>ecomp-staging</serverId>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-deploy-plugin</artifactId>
-                               <configuration>
-                                       <skip />
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                         <groupId>org.apache.maven.plugins</groupId>
-                         <artifactId>maven-site-plugin</artifactId>
-                         <dependencies>
-                           <dependency>
-                             <groupId>org.apache.maven.wagon</groupId>
-                             <artifactId>wagon-webdav-jackrabbit</artifactId>
-                             <version>2.10</version>
-                           </dependency>
-                         </dependencies>
-                       </plugin>
-               </plugins>
-       </build>
-       <reporting>
-         <plugins>
-           <plugin>
-             <groupId>org.apache.maven.plugins</groupId>
-             <artifactId>maven-javadoc-plugin</artifactId>
-             <version>2.10.4</version>
-             <configuration>
-               <failOnError>false</failOnError>
-               <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
-               <docletArtifact>
-                 <groupId>org.umlgraph</groupId>
-                 <artifactId>umlgraph</artifactId>
-                 <version>5.6</version>
-               </docletArtifact>
-               <additionalparam>-views</additionalparam>
-               <useStandardDocletOptions>true</useStandardDocletOptions>
-             </configuration>
-           </plugin>
-         </plugins>
-       </reporting>
+    <distributionManagement>
+        <site>
+            <id>ecomp-site</id>
+            <url>dav:${nexusproxy}${sitePath}</url>
+        </site>
+    </distributionManagement>
 
+    <profiles>
+        <profile>
+            <!--This profile is used to store Eclipse m2e settings only. It has no 
+                influence on the Maven build itself. -->
+            <id>only-eclipse</id>
+            <activation>
+                <property>
+                    <name>m2e.version</name>
+                </property>
+            </activation>
+            <build>
+                <pluginManagement>
+                    <plugins>
+                        <plugin>
+                            <groupId>org.eclipse.m2e</groupId>
+                            <artifactId>lifecycle-mapping</artifactId>
+                            <configuration>
+                                <lifecycleMappingMetadata>
+                                    <pluginExecutions>
+                                        <pluginExecution>
+                                            <pluginExecutionFilter>
+                                                <groupId>org.codehaus.mojo</groupId>
+                                                <artifactId>exec-maven-plugin</artifactId>
+                                                <versionRange>[1.6.0,)</versionRange>
+                                                <goals>
+                                                    <goal>java</goal>
+                                                    <goal>exec</goal>
+                                                </goals>
+                                            </pluginExecutionFilter>
+                                            <action>
+                                                <execute />
+                                            </action>
+                                        </pluginExecution>
+                                        <pluginExecution>
+                                            <pluginExecutionFilter>
+                                                <groupId>org.commonjava.maven.plugins</groupId>
+                                                <artifactId>directory-maven-plugin</artifactId>
+                                                <versionRange>0.2</versionRange>
+                                                <goals>
+                                                    <goal>directory-of</goal>
+                                                </goals>
+                                            </pluginExecutionFilter>
+                                            <action>
+                                                <execute />
+                                            </action>
+                                        </pluginExecution>
+                                        <pluginExecution>
+                                            <pluginExecutionFilter>
+                                                <groupId>org.apache.maven.plugins</groupId>
+                                                <artifactId>maven-dependency-plugin</artifactId>
+                                                <versionRange>[2.0,)</versionRange>
+                                                <goals>
+                                                    <goal>unpack</goal>
+                                                    <goal>unpack-dependencies</goal>
+                                                </goals>
+                                            </pluginExecutionFilter>
+                                            <action>
+                                                <execute />
+                                            </action>
+                                        </pluginExecution>
+                                        <pluginExecution>
+                                            <pluginExecutionFilter>
+                                                <groupId>org.apache.maven.plugins</groupId>
+                                                <artifactId>maven-antrun-plugin</artifactId>
+                                                <versionRange>[1.0,)</versionRange>
+                                                <goals>
+                                                    <goal>run</goal>
+                                                </goals>
+                                            </pluginExecutionFilter>
+                                            <action>
+                                                <ignore />
+                                            </action>
+                                        </pluginExecution>
+                                    </pluginExecutions>
+                                </lifecycleMappingMetadata>
+                            </configuration>
+                        </plugin>
+                    </plugins>
+                </pluginManagement>
+            </build>
+        </profile>
+    </profiles>
 </project>