blob: d0206a1ff316f4f42c8512c07fd05d4bce4b0c62 [file] [log] [blame]
Pamela Dragosh6e7baf62017-08-03 13:00:44 -04001<!--
2 ============LICENSE_START=======================================================
ramverma189a7852018-05-24 14:48:37 +01003 ONAP Policy GUI
Pamela Dragosh6e7baf62017-08-03 13:00:44 -04004 ================================================================================
Jim Hahna2861702021-04-08 16:59:55 -04005 Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
danielhanrahan6f7ef142022-02-11 16:22:58 +00006 Modifications Copyright (C) 2020-2022 Nordix Foundation.
Pamela Dragosh6e7baf62017-08-03 13:00:44 -04007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
Pamela Dragosha2a37de2017-08-17 10:27:23 -040011
Pamela Dragosh6e7baf62017-08-03 13:00:44 -040012 http://www.apache.org/licenses/LICENSE-2.0
Pamela Dragosha2a37de2017-08-17 10:27:23 -040013
Pamela Dragosh6e7baf62017-08-03 13:00:44 -040014 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
danielhanrahan6f7ef142022-02-11 16:22:58 +000023 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Pamela Dragosh78f196d2018-09-25 09:57:11 -040024 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh6e7baf62017-08-03 13:00:44 -040025
Pamela Dragosh78f196d2018-09-25 09:57:11 -040026 <parent>
27 <groupId>org.onap.policy.parent</groupId>
28 <artifactId>integration</artifactId>
liamfallona03e32e2022-11-29 15:22:00 +000029 <version>3.5.5-SNAPSHOT</version>
Pamela Dragosh78f196d2018-09-25 09:57:11 -040030 <relativePath />
31 </parent>
Pamela Dragosh6e7baf62017-08-03 13:00:44 -040032
Pamela Dragosh78f196d2018-09-25 09:57:11 -040033 <groupId>org.onap.policy.gui</groupId>
34 <artifactId>policy-gui</artifactId>
liamfallona03e32e2022-11-29 15:22:00 +000035 <version>2.2.6-SNAPSHOT</version>
Pamela Dragosh6e7baf62017-08-03 13:00:44 -040036
Pamela Dragosh78f196d2018-09-25 09:57:11 -040037 <packaging>pom</packaging>
Pamela Dragosh6e7baf62017-08-03 13:00:44 -040038
Ram Krishna Vermafd7eb2d2020-02-10 11:29:12 -050039 <name>${project.artifactId}</name>
40 <description>Code for all the Policy GUI's.</description>
Pamela Dragosh6e7baf62017-08-03 13:00:44 -040041
Pamela Dragosh78f196d2018-09-25 09:57:11 -040042 <properties>
liamfallona03e32e2022-11-29 15:22:00 +000043 <policy.apex-pdp.version>2.7.6-SNAPSHOT</policy.apex-pdp.version>
44 <policy.common.version>1.10.5-SNAPSHOT</policy.common.version>
45 <policy.models.version>2.6.6-SNAPSHOT</policy.models.version>
waynedunican0bdca952020-08-24 13:36:15 +010046 <jacoco.dataFile>${project.basedir}/../../target/code-coverage/jacoco-ut.exec</jacoco.dataFile>
47 <sonar.javascript.lcov.reportPaths>${project.basedir}/target/code-coverage/lcov.info</sonar.javascript.lcov.reportPaths>
Pamela Dragosh78f196d2018-09-25 09:57:11 -040048 </properties>
Pamela Dragosha2a37de2017-08-17 10:27:23 -040049
Pamela Dragosh78f196d2018-09-25 09:57:11 -040050 <modules>
Hengye7fa12fd2020-02-25 09:15:58 +080051 <module>gui-common</module>
liamfallon2de08a62020-07-16 10:24:08 +010052 <module>gui-editors</module>
brunomilitzerd5fd1172021-05-10 16:51:15 +010053 <module>gui-clamp</module>
danielhanrahane56f1272022-01-28 11:41:38 +000054 <module>gui-server</module>
danielhanrahan608e6252021-08-20 16:55:19 +010055 <module>packages</module>
Pamela Dragosh78f196d2018-09-25 09:57:11 -040056 </modules>
57
58 <distributionManagement>
59 <site>
60 <id>ecomp-site</id>
61 <url>dav:${nexusproxy}${sitePath}</url>
62 </site>
63 </distributionManagement>
64
liamfallon2de08a62020-07-16 10:24:08 +010065 <profiles>
66 <profile>
67 <!--This profile is used to store Eclipse m2e settings only. It has no
68 influence on the Maven build itself. -->
69 <id>only-eclipse</id>
70 <activation>
71 <property>
72 <name>m2e.version</name>
73 </property>
74 </activation>
75 <build>
76 <pluginManagement>
77 <plugins>
78 <plugin>
79 <groupId>org.eclipse.m2e</groupId>
80 <artifactId>lifecycle-mapping</artifactId>
81 <version>1.0.0</version>
82 <configuration>
83 <lifecycleMappingMetadata>
84 <pluginExecutions>
85 <pluginExecution>
86 <pluginExecutionFilter>
87 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>exec-maven-plugin</artifactId>
89 <versionRange>[1.6.0,)</versionRange>
90 <goals>
91 <goal>java</goal>
92 <goal>exec</goal>
93 </goals>
94 </pluginExecutionFilter>
95 <action>
96 <execute />
97 </action>
98 </pluginExecution>
99 <pluginExecution>
100 <pluginExecutionFilter>
101 <groupId>org.commonjava.maven.plugins</groupId>
102 <artifactId>directory-maven-plugin</artifactId>
103 <versionRange>0.2</versionRange>
104 <goals>
105 <goal>directory-of</goal>
106 </goals>
107 </pluginExecutionFilter>
108 <action>
109 <execute />
110 </action>
111 </pluginExecution>
112 <pluginExecution>
113 <pluginExecutionFilter>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-dependency-plugin</artifactId>
116 <versionRange>[2.0,)</versionRange>
117 <goals>
118 <goal>unpack</goal>
119 <goal>unpack-dependencies</goal>
120 </goals>
121 </pluginExecutionFilter>
122 <action>
123 <execute />
124 </action>
125 </pluginExecution>
126 <pluginExecution>
127 <pluginExecutionFilter>
128 <groupId>org.apache.maven.plugins</groupId>
129 <artifactId>maven-antrun-plugin</artifactId>
130 <versionRange>[1.0,)</versionRange>
131 <goals>
132 <goal>run</goal>
133 </goals>
134 </pluginExecutionFilter>
135 <action>
136 <ignore />
137 </action>
138 </pluginExecution>
139 </pluginExecutions>
140 </lifecycleMappingMetadata>
141 </configuration>
142 </plugin>
143 </plugins>
144 </pluginManagement>
145 </build>
146 </profile>
147 </profiles>
Pamela Dragosh6e7baf62017-08-03 13:00:44 -0400148</project>