Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 4 | ONAP Policy Engine |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 5 | ================================================================================ |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 6 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 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 |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | 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" |
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 26 | <groupId>org.onap.policy.engine</groupId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 27 | <artifactId>PolicyEngineSuite</artifactId> |
Jessica Wagantall | db597fe | 2017-11-18 18:50:29 -0800 | [diff] [blame] | 28 | <version>1.2.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 29 | </parent> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 30 | <artifactId>PolicyEngineClient</artifactId> |
| 31 | <dependencies> |
| 32 | <dependency> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 33 | <groupId>org.onap.policy.engine</groupId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 34 | <artifactId>PolicyEngineAPI</artifactId> |
| 35 | <version>${project.version}</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>com.googlecode.json-simple</groupId> |
| 39 | <artifactId>json-simple</artifactId> |
| 40 | <version>1.1</version> |
| 41 | </dependency> |
| 42 | <dependency> |
Tej, Tarun | 80f072f | 2017-08-21 20:00:50 -0400 | [diff] [blame] | 43 | <groupId>org.apache.httpcomponents</groupId> |
| 44 | <artifactId>httpclient</artifactId> |
Pamela Dragosh | bcdb1e1 | 2018-02-07 15:41:30 -0500 | [diff] [blame] | 45 | <version>${httpclient.version}</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 46 | </dependency> |
| 47 | </dependencies> |
| 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.maven.plugins</groupId> |
| 52 | <artifactId>maven-compiler-plugin</artifactId> |
| 53 | <version>3.2</version> |
| 54 | <configuration> |
| 55 | <source>1.8</source> |
| 56 | <target>1.8</target> |
| 57 | </configuration> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
| 61 | </project> |