blob: 73d6156e9039c763507ca7f2572b375c4da48d71 [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 ================================================================================
Pamela Dragosh32356472018-05-01 10:11:07 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Hengye7fa12fd2020-02-25 09:15:58 +08006 Modifications Copyright (C) 2020 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"
Pamela Dragosh78f196d2018-09-25 09:57:11 -040023 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 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>
Ram Krishna Vermafd7eb2d2020-02-10 11:29:12 -050029 <version>3.1.1-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>
Pamela Dragosh26ee0ed2018-10-25 10:53:35 -040035 <version>2.0.0-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>
Hengye7fa12fd2020-02-25 09:15:58 +080043 <policy.common.version>1.6.2-SNAPSHOT</policy.common.version>
44 <policy.models.version>2.2.1-SNAPSHOT</policy.models.version>
Pamela Dragosh78f196d2018-09-25 09:57:11 -040045 </properties>
Pamela Dragosha2a37de2017-08-17 10:27:23 -040046
Pamela Dragosh78f196d2018-09-25 09:57:11 -040047 <modules>
Hengye7fa12fd2020-02-25 09:15:58 +080048 <module>gui-common</module>
49 <module>gui-pdp-monitoring</module>
Pamela Dragosh78f196d2018-09-25 09:57:11 -040050 </modules>
51
Hengye7fa12fd2020-02-25 09:15:58 +080052 <dependencies>
53 <dependency>
54 <groupId>junit</groupId>
55 <artifactId>junit</artifactId>
56 <scope>test</scope>
57 </dependency>
58 </dependencies>
59
Pamela Dragosh78f196d2018-09-25 09:57:11 -040060 <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 Dragosh78f196d2018-09-25 09:57:11 -040070 <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 Vermafd7eb2d2020-02-10 11:29:12 -050083 <sourceDirectory>${project.build.sourceDirectories}</sourceDirectory>
Pamela Dragosh78f196d2018-09-25 09:57:11 -040084 <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 Dragosh78f196d2018-09-25 09:57:11 -0400108 <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 Dragosh6e7baf62017-08-03 13:00:44 -0400134</project>