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 | ================================================================================ |
Pamela Dragosh | 3235647 | 2018-05-01 10:11:07 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Hengye | 7fa12fd | 2020-02-25 09:15:58 +0800 | [diff] [blame^] | 6 | Modifications Copyright (C) 2020 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" |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 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> |
Ram Krishna Verma | fd7eb2d | 2020-02-10 11:29:12 -0500 | [diff] [blame] | 29 | <version>3.1.1-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> |
Pamela Dragosh | 26ee0ed | 2018-10-25 10:53:35 -0400 | [diff] [blame] | 35 | <version>2.0.0-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> |
Hengye | 7fa12fd | 2020-02-25 09:15:58 +0800 | [diff] [blame^] | 43 | <policy.common.version>1.6.2-SNAPSHOT</policy.common.version> |
| 44 | <policy.models.version>2.2.1-SNAPSHOT</policy.models.version> |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 45 | </properties> |
Pamela Dragosh | a2a37de | 2017-08-17 10:27:23 -0400 | [diff] [blame] | 46 | |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 47 | <modules> |
Hengye | 7fa12fd | 2020-02-25 09:15:58 +0800 | [diff] [blame^] | 48 | <module>gui-common</module> |
| 49 | <module>gui-pdp-monitoring</module> |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 50 | </modules> |
| 51 | |
Hengye | 7fa12fd | 2020-02-25 09:15:58 +0800 | [diff] [blame^] | 52 | <dependencies> |
| 53 | <dependency> |
| 54 | <groupId>junit</groupId> |
| 55 | <artifactId>junit</artifactId> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | </dependencies> |
| 59 | |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 60 | <distributionManagement> |
| 61 | <site> |
| 62 | <id>ecomp-site</id> |
| 63 | <url>dav:${nexusproxy}${sitePath}</url> |
| 64 | </site> |
| 65 | </distributionManagement> |
| 66 | |
| 67 | <build> |
| 68 | <plugins> |
| 69 | <plugin> |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 70 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 71 | <executions> |
| 72 | <execution> |
| 73 | <id>onap-java-style</id> |
| 74 | <goals> |
| 75 | <goal>check</goal> |
| 76 | </goals> |
| 77 | <phase>process-sources</phase> |
| 78 | <configuration> |
| 79 | <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml |
| 80 | with minor changes --> |
| 81 | <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> |
| 82 | <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> |
Ram Krishna Verma | fd7eb2d | 2020-02-10 11:29:12 -0500 | [diff] [blame] | 83 | <sourceDirectory>${project.build.sourceDirectories}</sourceDirectory> |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 84 | <includeResources>true</includeResources> |
| 85 | <includeTestSourceDirectory>true</includeTestSourceDirectory> |
| 86 | <includeTestResources>true</includeTestResources> |
| 87 | <excludes> |
| 88 | </excludes> |
| 89 | <consoleOutput>true</consoleOutput> |
| 90 | <failOnViolation>true</failOnViolation> |
| 91 | <violationSeverity>warning</violationSeverity> |
| 92 | </configuration> |
| 93 | </execution> |
| 94 | </executions> |
| 95 | <dependencies> |
| 96 | <dependency> |
| 97 | <groupId>org.onap.oparent</groupId> |
| 98 | <artifactId>checkstyle</artifactId> |
| 99 | <version>${oparent.version}</version> |
| 100 | <scope>compile</scope> |
| 101 | </dependency> |
| 102 | </dependencies> |
| 103 | </plugin> |
| 104 | </plugins> |
| 105 | <pluginManagement> |
| 106 | <plugins> |
| 107 | <plugin> |
Pamela Dragosh | 78f196d | 2018-09-25 09:57:11 -0400 | [diff] [blame] | 108 | <groupId>org.eclipse.m2e</groupId> |
| 109 | <artifactId>lifecycle-mapping</artifactId> |
| 110 | <version>1.0.0</version> |
| 111 | <configuration> |
| 112 | <lifecycleMappingMetadata> |
| 113 | <pluginExecutions> |
| 114 | <pluginExecution> |
| 115 | <pluginExecutionFilter> |
| 116 | <groupId>org.apache.maven.plugins</groupId> |
| 117 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 118 | <versionRange>2.17,)</versionRange> |
| 119 | <goals> |
| 120 | <goal>check</goal> |
| 121 | </goals> |
| 122 | </pluginExecutionFilter> |
| 123 | <action> |
| 124 | <ignore /> |
| 125 | </action> |
| 126 | </pluginExecution> |
| 127 | </pluginExecutions> |
| 128 | </lifecycleMappingMetadata> |
| 129 | </configuration> |
| 130 | </plugin> |
| 131 | </plugins> |
| 132 | </pluginManagement> |
| 133 | </build> |
Pamela Dragosh | 6e7baf6 | 2017-08-03 13:00:44 -0400 | [diff] [blame] | 134 | </project> |