blob: 940eaa751df12a6bcfc8409f7894a20a092acc9f [file] [log] [blame]
Pamela Dragosha6557b02017-02-14 19:49:32 -05001<!--
2 ============LICENSE_START=======================================================
3 Drools PDP Application Models
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 -->
20
21<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <modelVersion>4.0.0</modelVersion>
Pamela Dragosha5861db2017-02-23 06:27:44 -050023
Pamela Dragosha6557b02017-02-14 19:49:32 -050024 <artifactId>rest</artifactId>
25
26 <parent>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040027 <groupId>org.onap.policy.drools-applications</groupId>
28 <artifactId>model-impl</artifactId>
Jessica Wagantallcd2ec552017-11-18 18:36:44 -080029 <version>1.2.0-SNAPSHOT</version>
Pamela Dragosha6557b02017-02-14 19:49:32 -050030 </parent>
31
32 <dependencies>
33 <dependency>
34 <groupId>junit</groupId>
35 <artifactId>junit</artifactId>
36 <version>4.12</version>
37 <scope>provided</scope>
38 </dependency>
39 <dependency>
40 <groupId>com.google.code.gson</groupId>
41 <artifactId>gson</artifactId>
42 <version>2.5</version>
43 <scope>provided</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.apache.httpcomponents</groupId>
47 <artifactId>httpclient</artifactId>
Pamela Dragosh67d284b2018-02-07 11:01:19 -050048 <version>4.5.5</version>
Pamela Dragosha6557b02017-02-14 19:49:32 -050049 <scope>provided</scope>
50 </dependency>
51 </dependencies>
52</project>