Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
ramverma | 189a785 | 2018-05-24 14:48:37 +0100 | [diff] [blame] | 3 | ONAP Policy GUI |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 4 | ================================================================================ |
Jim Hahn | a286170 | 2021-04-08 16:59:55 -0400 | [diff] [blame] | 5 | Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. |
danielhanrahan | 6f7ef14 | 2022-02-11 16:22:58 +0000 | [diff] [blame] | 6 | Modifications Copyright (C) 2020-2022 Nordix Foundation. |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 7 | ================================================================================ |
| 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 Dragosh | a2a37de | 2017-08-17 10:27:23 -0400 | [diff] [blame] | 11 | |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 12 | http://www.apache.org/licenses/LICENSE-2.0 |
Pamela Dragosh | a2a37de | 2017-08-17 10:27:23 -0400 | [diff] [blame] | 13 | |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 14 | 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" |
danielhanrahan | 6f7ef14 | 2022-02-11 16:22:58 +0000 | [diff] [blame] | 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 25 | |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.policy.parent</groupId> |
| 28 | <artifactId>integration</artifactId> |
liamfallon | a03e32e | 2022-11-29 15:22:00 +0000 | [diff] [blame] | 29 | <version>3.5.5-SNAPSHOT</version> |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 30 | <relativePath /> |
| 31 | </parent> |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 32 | |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 33 | <groupId>org.onap.policy.gui</groupId> |
| 34 | <artifactId>policy-gui</artifactId> |
liamfallon | a03e32e | 2022-11-29 15:22:00 +0000 | [diff] [blame] | 35 | <version>2.2.6-SNAPSHOT</version> |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 36 | |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 37 | <packaging>pom</packaging> |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 38 | |
Ram Krishna Verma | fd7eb2d | 2020-02-10 11:29:12 -0500 | [diff] [blame] | 39 | <name>${project.artifactId}</name> |
| 40 | <description>Code for all the Policy GUI's.</description> |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 41 | |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 42 | <properties> |
liamfallon | a03e32e | 2022-11-29 15:22:00 +0000 | [diff] [blame] | 43 | <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> |
waynedunican | 0bdca95 | 2020-08-24 13:36:15 +0100 | [diff] [blame] | 46 | <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 Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 48 | </properties> |
Pamela Dragosh | a2a37de | 2017-08-17 10:27:23 -0400 | [diff] [blame] | 49 | |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 50 | <modules> |
Hengye | 7fa12fd | 2020-02-25 09:15:58 +0800 | [diff] [blame] | 51 | <module>gui-common</module> |
liamfallon | 2de08a6 | 2020-07-16 10:24:08 +0100 | [diff] [blame] | 52 | <module>gui-editors</module> |
brunomilitzer | d5fd117 | 2021-05-10 16:51:15 +0100 | [diff] [blame] | 53 | <module>gui-clamp</module> |
danielhanrahan | e56f127 | 2022-01-28 11:41:38 +0000 | [diff] [blame] | 54 | <module>gui-server</module> |
danielhanrahan | 608e625 | 2021-08-20 16:55:19 +0100 | [diff] [blame] | 55 | <module>packages</module> |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 56 | </modules> |
| 57 | |
| 58 | <distributionManagement> |
| 59 | <site> |
| 60 | <id>ecomp-site</id> |
| 61 | <url>dav:${nexusproxy}${sitePath}</url> |
| 62 | </site> |
| 63 | </distributionManagement> |
| 64 | |
liamfallon | 2de08a6 | 2020-07-16 10:24:08 +0100 | [diff] [blame] | 65 | <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 Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 148 | </project> |