blob: b92bb293bd501e7fdded158e946dfceac1c1a175 [file] [log] [blame]
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -04001<!--
2 ============LICENSE_START=======================================================
ramverma74b108c2018-05-24 12:40:21 +01003 ONAP Policy API
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -04004 ================================================================================
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -05005 Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
Jim Hahn6e50bcd2020-01-14 17:52:12 -05006 Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
liamfallon379075d2020-06-19 10:14:45 +01007 Modifications Copyright (C) 2019-2020 Nordix Foundation.
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -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
liamfallon379075d2020-06-19 10:14:45 +010012
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040013 http://www.apache.org/licenses/LICENSE-2.0
liamfallon379075d2020-06-19 10:14:45 +010014
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -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"
Krishnajinkada9e01a2018-08-31 20:01:30 +090024 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 Dragosh7ef1ede2017-08-03 12:56:47 -040026
Krishnajinkada9e01a2018-08-31 20:01:30 +090027 <parent>
28 <groupId>org.onap.policy.parent</groupId>
29 <artifactId>integration</artifactId>
jhhbc2d11d2020-07-09 15:00:38 -050030 <version>3.2.0</version>
Pamela Dragosh8218ae02018-09-25 09:20:32 -040031 <relativePath />
Krishnajinkada9e01a2018-08-31 20:01:30 +090032 </parent>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040033
Krishnajinkada9e01a2018-08-31 20:01:30 +090034 <groupId>org.onap.policy.api</groupId>
35 <artifactId>policy-api</artifactId>
Ram Krishna Vermaf655bbd2020-07-10 18:30:10 -040036 <version>2.3.1-SNAPSHOT</version>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040037
Krishnajinkada9e01a2018-08-31 20:01:30 +090038 <packaging>pom</packaging>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040039
Krishnajinkada9e01a2018-08-31 20:01:30 +090040 <name>policy-api</name>
41 <description>Code that define our external API.</description>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040042
Krishnajinkada9e01a2018-08-31 20:01:30 +090043 <properties>
Taka Cho1e2ca512020-07-17 11:28:57 -040044 <policy.common.version>1.7.1-SNAPSHOT</policy.common.version>
45 <policy.models.version>2.3.1-SNAPSHOT</policy.models.version>
Krishnajinkada9e01a2018-08-31 20:01:30 +090046 </properties>
47
48 <modules>
49 <module>main</module>
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050050 <module>packages</module>
Bilal A56f97fa2019-02-14 14:49:44 -050051 <module>testsuites</module>
Krishnajinkada9e01a2018-08-31 20:01:30 +090052 </modules>
53
54 <dependencies>
55 <dependency>
Chenfei Gao304afad2019-11-12 22:29:37 -050056 <groupId>org.slf4j</groupId>
57 <artifactId>slf4j-api</artifactId>
58 </dependency>
59 <dependency>
Krishnajinkada9e01a2018-08-31 20:01:30 +090060 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 <scope>test</scope>
63 </dependency>
Bilal A56f97fa2019-02-14 14:49:44 -050064 <dependency>
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050065 <groupId>org.onap.policy.common</groupId>
66 <artifactId>policy-endpoints</artifactId>
67 <version>${policy.common.version}</version>
Krishnajinkada9e01a2018-08-31 20:01:30 +090068 </dependency>
HOCKLA3e87a452019-12-18 08:57:22 -060069 <dependency>
70 <groupId>javax.servlet</groupId>
71 <artifactId>javax.servlet-api</artifactId>
HOCKLA3e87a452019-12-18 08:57:22 -060072 </dependency>
73 <dependency>
74 <groupId>org.eclipse.jetty</groupId>
75 <artifactId>jetty-server</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.eclipse.jetty</groupId>
79 <artifactId>jetty-security</artifactId>
HOCKLA3e87a452019-12-18 08:57:22 -060080 </dependency>
81 <dependency>
82 <groupId>org.eclipse.jetty</groupId>
83 <artifactId>jetty-servlet</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.glassfish.jersey.containers</groupId>
87 <artifactId>jersey-container-servlet</artifactId>
88 <version>${version.jersey}</version>
89 </dependency>
Krishnajinkada9e01a2018-08-31 20:01:30 +090090 </dependencies>
91
92 <distributionManagement>
93 <site>
94 <id>ecomp-site</id>
95 <url>dav:${nexusproxy}${sitePath}</url>
96 </site>
97 </distributionManagement>
98
99 <build>
Krishnajinkada9e01a2018-08-31 20:01:30 +0900100 <pluginManagement>
101 <plugins>
102 <plugin>
Pamela Dragosh8218ae02018-09-25 09:20:32 -0400103 <groupId>org.eclipse.m2e</groupId>
104 <artifactId>lifecycle-mapping</artifactId>
105 <version>1.0.0</version>
106 <configuration>
107 <lifecycleMappingMetadata>
108 <pluginExecutions>
109 <pluginExecution>
110 <pluginExecutionFilter>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-checkstyle-plugin</artifactId>
113 <versionRange>2.17,)</versionRange>
114 <goals>
115 <goal>check</goal>
116 </goals>
117 </pluginExecutionFilter>
118 <action>
119 <ignore />
120 </action>
121 </pluginExecution>
122 </pluginExecutions>
123 </lifecycleMappingMetadata>
124 </configuration>
125 </plugin>
Krishnajinkada9e01a2018-08-31 20:01:30 +0900126 </plugins>
127 </pluginManagement>
128 </build>
Pamela Dragoshcb8f3f02017-08-15 11:39:16 -0400129
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -0400130</project>