Ritu Sood | 1c4fcf4 | 2017-08-23 07:52:20 -0700 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2017 Intel Corp. All rights reserved. |
| 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | ============LICENSE_END========================================================= |
| 17 | --> |
| 18 | |
| 19 | <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"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <artifactId>vfc</artifactId> |
| 23 | |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.drools-applications</groupId> |
| 26 | <artifactId>model-impl</artifactId> |
Pamela Dragosh | 041470c | 2017-11-07 21:13:02 -0500 | [diff] [blame^] | 27 | <version>1.1.1-SNAPSHOT</version> |
Ritu Sood | 1c4fcf4 | 2017-08-23 07:52:20 -0700 | [diff] [blame] | 28 | </parent> |
| 29 | |
| 30 | <dependencies> |
| 31 | <dependency> |
| 32 | <groupId>junit</groupId> |
| 33 | <artifactId>junit</artifactId> |
| 34 | <version>4.12</version> |
| 35 | <scope>provided</scope> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>com.google.code.gson</groupId> |
| 39 | <artifactId>gson</artifactId> |
| 40 | <version>2.5</version> |
| 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>org.onap.policy.drools-applications</groupId> |
| 45 | <artifactId>rest</artifactId> |
| 46 | <version>${project.version}</version> |
| 47 | </dependency> |
Ritu Sood | 1aa30b7 | 2017-09-11 14:20:13 -0700 | [diff] [blame] | 48 | <dependency> |
| 49 | <groupId>org.drools</groupId> |
| 50 | <artifactId>drools-core</artifactId> |
| 51 | <version>6.5.0.Final</version> |
| 52 | <scope>provided</scope> |
| 53 | </dependency> |
daniel | 0483622 | 2017-09-25 15:50:33 -0500 | [diff] [blame] | 54 | <dependency> |
| 55 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 56 | <artifactId>policy-management</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | <scope>provided</scope> |
| 59 | </dependency> |
Ritu Sood | 1c4fcf4 | 2017-08-23 07:52:20 -0700 | [diff] [blame] | 60 | </dependencies> |
| 61 | </project> |