blob: a1fb96bf697f7f34fd1387dd4c9cd0865d577d04 [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 ================================================================================
Jim Hahn662dd892021-03-05 16:01:42 -05005 Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved.
waynedunicand354eac2021-03-10 11:52:41 +00006 Copyright (C) 2019, 2021 Nordix Foundation.
Ram Krishna Verma3a3dab82020-09-16 10:53:17 -04007 Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
Pamela Dragosh1f049412017-08-03 13:22:41 -04008 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
ramverma07b7ba02019-01-31 13:09:00 +000012
Pamela Dragosh1f049412017-08-03 13:22:41 -040013 http://www.apache.org/licenses/LICENSE-2.0
ramverma07b7ba02019-01-31 13:09:00 +000014
Pamela Dragosh1f049412017-08-03 13:22:41 -040015 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21 -->
22
23<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 -040024 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh1f049412017-08-03 13:22:41 -040026
Pamela Dragosh85047eb2018-09-25 09:47:24 -040027 <parent>
28 <groupId>org.onap.policy.parent</groupId>
29 <artifactId>integration</artifactId>
Ram Krishna Verma2c186b82021-02-23 10:22:40 -050030 <version>3.3.0</version>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040031 <relativePath />
32 </parent>
Pamela Dragosh1f049412017-08-03 13:22:41 -040033
Pamela Dragosh85047eb2018-09-25 09:47:24 -040034 <groupId>org.onap.policy.pap</groupId>
35 <artifactId>policy-pap</artifactId>
Ram Krishna Vermadaaafa32021-02-23 15:11:48 -050036 <version>2.4.1-SNAPSHOT</version>
Pamela Dragosh1f049412017-08-03 13:22:41 -040037
Pamela Dragosh85047eb2018-09-25 09:47:24 -040038 <packaging>pom</packaging>
Pamela Dragosh1f049412017-08-03 13:22:41 -040039
Pamela Dragosh85047eb2018-09-25 09:47:24 -040040 <name>policy-pap</name>
41 <description>Code that implements the Policy Administration Backend.</description>
Pamela Dragosh1f049412017-08-03 13:22:41 -040042
Pamela Dragosh85047eb2018-09-25 09:47:24 -040043 <properties>
Ram Krishna Verma2c186b82021-02-23 10:22:40 -050044 <policy.common.version>1.8.0</policy.common.version>
waynedunicand354eac2021-03-10 11:52:41 +000045 <policy.models.version>2.4.1</policy.models.version>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040046 </properties>
Pamela Dragosh788fe2c2017-08-17 10:29:36 -040047
Pamela Dragosh85047eb2018-09-25 09:47:24 -040048 <modules>
ramverma07b7ba02019-01-31 13:09:00 +000049 <module>main</module>
ramvermad1a702c2019-02-11 15:20:09 +000050 <module>packages</module>
Bilal Aea53f042019-02-21 11:31:02 -050051 <module>testsuites</module>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040052 </modules>
53
ramverma07b7ba02019-01-31 13:09:00 +000054 <dependencies>
55 <dependency>
56 <groupId>junit</groupId>
57 <artifactId>junit</artifactId>
58 <scope>test</scope>
59 </dependency>
ramverma07b7ba02019-01-31 13:09:00 +000060 </dependencies>
61
Pamela Dragosh85047eb2018-09-25 09:47:24 -040062 <distributionManagement>
63 <site>
64 <id>ecomp-site</id>
65 <url>dav:${nexusproxy}${sitePath}</url>
66 </site>
67 </distributionManagement>
68
69 <build>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040070 <pluginManagement>
71 <plugins>
72 <plugin>
Pamela Dragosh85047eb2018-09-25 09:47:24 -040073 <groupId>org.eclipse.m2e</groupId>
74 <artifactId>lifecycle-mapping</artifactId>
75 <version>1.0.0</version>
76 <configuration>
77 <lifecycleMappingMetadata>
78 <pluginExecutions>
79 <pluginExecution>
80 <pluginExecutionFilter>
81 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-checkstyle-plugin</artifactId>
83 <versionRange>2.17,)</versionRange>
84 <goals>
85 <goal>check</goal>
86 </goals>
87 </pluginExecutionFilter>
88 <action>
89 <ignore />
90 </action>
91 </pluginExecution>
92 </pluginExecutions>
93 </lifecycleMappingMetadata>
94 </configuration>
95 </plugin>
96 </plugins>
97 </pluginManagement>
98 </build>
Pamela Dragosh1f049412017-08-03 13:22:41 -040099</project>