blob: 1a788d04ef878a29d7dbd9764c3e95c028b28757 [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.
Pamela Dragoshdbbae8b2021-02-23 11:00:15 -05006 Copyright (C) 2017-2021 AT&T Intellectual Property. All rights reserved.
liamfallon379075d2020-06-19 10:14:45 +01007 Modifications Copyright (C) 2019-2020 Nordix Foundation.
Ram Krishna Vermaff2317d2020-09-16 10:44:03 -04008 Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -04009 ================================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
liamfallon379075d2020-06-19 10:14:45 +010013
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040014 http://www.apache.org/licenses/LICENSE-2.0
liamfallon379075d2020-06-19 10:14:45 +010015
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040016 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21 ============LICENSE_END=========================================================
22 -->
23
24<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 +090025 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
26 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040027
Krishnajinkada9e01a2018-08-31 20:01:30 +090028 <parent>
29 <groupId>org.onap.policy.parent</groupId>
30 <artifactId>integration</artifactId>
liamfallone63b2a32021-12-02 15:53:54 +000031 <version>3.5.1-SNAPSHOT</version>
Pamela Dragosh8218ae02018-09-25 09:20:32 -040032 <relativePath />
Krishnajinkada9e01a2018-08-31 20:01:30 +090033 </parent>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040034
Krishnajinkada9e01a2018-08-31 20:01:30 +090035 <groupId>org.onap.policy.api</groupId>
36 <artifactId>policy-api</artifactId>
liamfallon66d7d3b2021-11-29 11:30:48 +000037 <version>2.6.1-SNAPSHOT</version>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040038
Krishnajinkada9e01a2018-08-31 20:01:30 +090039 <packaging>pom</packaging>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040040
Krishnajinkada9e01a2018-08-31 20:01:30 +090041 <name>policy-api</name>
42 <description>Code that define our external API.</description>
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -040043
Krishnajinkada9e01a2018-08-31 20:01:30 +090044 <properties>
liamfallone63b2a32021-12-02 15:53:54 +000045 <policy.common.version>1.10.1-SNAPSHOT</policy.common.version>
46 <policy.models.version>2.6.1-SNAPSHOT</policy.models.version>
Krishnajinkada9e01a2018-08-31 20:01:30 +090047 </properties>
48
49 <modules>
50 <module>main</module>
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050051 <module>packages</module>
Bilal A56f97fa2019-02-14 14:49:44 -050052 <module>testsuites</module>
Krishnajinkada9e01a2018-08-31 20:01:30 +090053 </modules>
54
55 <dependencies>
56 <dependency>
Chenfei Gao304afad2019-11-12 22:29:37 -050057 <groupId>org.slf4j</groupId>
58 <artifactId>slf4j-api</artifactId>
59 </dependency>
60 <dependency>
Krishnajinkada9e01a2018-08-31 20:01:30 +090061 <groupId>junit</groupId>
62 <artifactId>junit</artifactId>
63 <scope>test</scope>
64 </dependency>
Bilal A56f97fa2019-02-14 14:49:44 -050065 <dependency>
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050066 <groupId>org.onap.policy.common</groupId>
67 <artifactId>policy-endpoints</artifactId>
68 <version>${policy.common.version}</version>
Krishnajinkada9e01a2018-08-31 20:01:30 +090069 </dependency>
HOCKLA3e87a452019-12-18 08:57:22 -060070 <dependency>
71 <groupId>javax.servlet</groupId>
72 <artifactId>javax.servlet-api</artifactId>
HOCKLA3e87a452019-12-18 08:57:22 -060073 </dependency>
74 <dependency>
75 <groupId>org.eclipse.jetty</groupId>
76 <artifactId>jetty-server</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.eclipse.jetty</groupId>
80 <artifactId>jetty-security</artifactId>
HOCKLA3e87a452019-12-18 08:57:22 -060081 </dependency>
82 <dependency>
83 <groupId>org.eclipse.jetty</groupId>
84 <artifactId>jetty-servlet</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.glassfish.jersey.containers</groupId>
88 <artifactId>jersey-container-servlet</artifactId>
89 <version>${version.jersey}</version>
90 </dependency>
Krishnajinkada9e01a2018-08-31 20:01:30 +090091 </dependencies>
92
93 <distributionManagement>
94 <site>
95 <id>ecomp-site</id>
96 <url>dav:${nexusproxy}${sitePath}</url>
97 </site>
98 </distributionManagement>
99
Pamela Dragosh7ef1ede2017-08-03 12:56:47 -0400100</project>