blob: e8221f2579a9cc9a179e2a0f7e40f3fb3916ce76 [file] [log] [blame]
Pamela Dragosh1f049412017-08-03 13:22:41 -04001<!--
2 ============LICENSE_START=======================================================
ramverma0f7ddb12018-05-24 14:23:19 +01003 ONAP Policy PAP
Pamela Dragosh1f049412017-08-03 13:22:41 -04004 ================================================================================
HOCKLA2eafca82020-01-10 15:41:07 -06005 Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
ramverma07b7ba02019-01-31 13:09:00 +00006 Copyright (C) 2019 Nordix Foundation.
Pamela Dragosh1f049412017-08-03 13:22:41 -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
ramverma07b7ba02019-01-31 13:09:00 +000011
Pamela Dragosh1f049412017-08-03 13:22:41 -040012 http://www.apache.org/licenses/LICENSE-2.0
ramverma07b7ba02019-01-31 13:09:00 +000013
Pamela Dragosh1f049412017-08-03 13:22:41 -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 Dragosh85047eb2018-09-25 09:47:24 -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 Dragosh1f049412017-08-03 13:22:41 -040025
Pamela Dragosh85047eb2018-09-25 09:47:24 -040026 <parent>
27 <groupId>org.onap.policy.parent</groupId>
28 <artifactId>integration</artifactId>
Pamela Dragosh011a7882020-03-23 14:06:09 -040029 <version>3.1.1</version>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040030 <relativePath />
31 </parent>
Pamela Dragosh1f049412017-08-03 13:22:41 -040032
Pamela Dragosh85047eb2018-09-25 09:47:24 -040033 <groupId>org.onap.policy.pap</groupId>
34 <artifactId>policy-pap</artifactId>
Pamela Dragosh9d511592020-03-24 10:52:28 -040035 <version>2.2.1-SNAPSHOT</version>
Pamela Dragosh1f049412017-08-03 13:22:41 -040036
Pamela Dragosh85047eb2018-09-25 09:47:24 -040037 <packaging>pom</packaging>
Pamela Dragosh1f049412017-08-03 13:22:41 -040038
Pamela Dragosh85047eb2018-09-25 09:47:24 -040039 <name>policy-pap</name>
40 <description>Code that implements the Policy Administration Backend.</description>
Pamela Dragosh1f049412017-08-03 13:22:41 -040041
Pamela Dragosh85047eb2018-09-25 09:47:24 -040042 <properties>
Pamela Dragosh011a7882020-03-23 14:06:09 -040043 <policy.common.version>1.6.2</policy.common.version>
44 <policy.models.version>2.2.1</policy.models.version>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040045 </properties>
Pamela Dragosh788fe2c2017-08-17 10:29:36 -040046
Pamela Dragosh85047eb2018-09-25 09:47:24 -040047 <modules>
ramverma07b7ba02019-01-31 13:09:00 +000048 <module>main</module>
ramvermad1a702c2019-02-11 15:20:09 +000049 <module>packages</module>
Bilal Aea53f042019-02-21 11:31:02 -050050 <module>testsuites</module>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040051 </modules>
52
ramverma07b7ba02019-01-31 13:09:00 +000053 <dependencies>
54 <dependency>
55 <groupId>junit</groupId>
56 <artifactId>junit</artifactId>
57 <scope>test</scope>
58 </dependency>
ramverma07b7ba02019-01-31 13:09:00 +000059 </dependencies>
60
Pamela Dragosh85047eb2018-09-25 09:47:24 -040061 <distributionManagement>
62 <site>
63 <id>ecomp-site</id>
64 <url>dav:${nexusproxy}${sitePath}</url>
65 </site>
66 </distributionManagement>
67
68 <build>
69 <plugins>
70 <plugin>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040071 <artifactId>maven-checkstyle-plugin</artifactId>
72 <executions>
73 <execution>
74 <id>onap-java-style</id>
75 <goals>
76 <goal>check</goal>
77 </goals>
78 <phase>process-sources</phase>
79 <configuration>
80 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
81 with minor changes -->
82 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
83 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
HOCKLA9df17182020-01-14 11:06:29 -060084 <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040085 <includeResources>true</includeResources>
86 <includeTestSourceDirectory>true</includeTestSourceDirectory>
87 <includeTestResources>true</includeTestResources>
88 <excludes>
89 </excludes>
90 <consoleOutput>true</consoleOutput>
91 <failOnViolation>true</failOnViolation>
92 <violationSeverity>warning</violationSeverity>
93 </configuration>
94 </execution>
95 </executions>
96 <dependencies>
97 <dependency>
98 <groupId>org.onap.oparent</groupId>
99 <artifactId>checkstyle</artifactId>
100 <version>${oparent.version}</version>
101 <scope>compile</scope>
102 </dependency>
103 </dependencies>
104 </plugin>
105 </plugins>
106 <pluginManagement>
107 <plugins>
108 <plugin>
Pamela Dragosh85047eb2018-09-25 09:47:24 -0400109 <groupId>org.eclipse.m2e</groupId>
110 <artifactId>lifecycle-mapping</artifactId>
111 <version>1.0.0</version>
112 <configuration>
113 <lifecycleMappingMetadata>
114 <pluginExecutions>
115 <pluginExecution>
116 <pluginExecutionFilter>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-checkstyle-plugin</artifactId>
119 <versionRange>2.17,)</versionRange>
120 <goals>
121 <goal>check</goal>
122 </goals>
123 </pluginExecutionFilter>
124 <action>
125 <ignore />
126 </action>
127 </pluginExecution>
128 </pluginExecutions>
129 </lifecycleMappingMetadata>
130 </configuration>
131 </plugin>
132 </plugins>
133 </pluginManagement>
134 </build>
Pamela Dragosh1f049412017-08-03 13:22:41 -0400135</project>