blob: 19341af8e79c1c596fe122c06f6c266e7b066624 [file] [log] [blame]
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
Liam Fallonfe4cd8e2017-12-14 07:40:18 -08004
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -04005 <artifactId>aai</artifactId>
Liam Fallonfe4cd8e2017-12-14 07:40:18 -08006
7 <parent>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -04008 <groupId>org.onap.policy.drools-applications</groupId>
9 <artifactId>model-impl</artifactId>
Liam Fallonfe4cd8e2017-12-14 07:40:18 -080010 <version>1.2.0-SNAPSHOT</version>
11 </parent>
12
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040013 <dependencies>
14 <dependency>
15 <groupId>com.google.code.gson</groupId>
16 <artifactId>gson</artifactId>
17 <version>2.5</version>
18 <scope>provided</scope>
19 </dependency>
20 <dependency>
21 <groupId>org.onap.policy.drools-applications</groupId>
22 <artifactId>rest</artifactId>
Jorge Hernandez788954f2017-11-07 09:04:10 -060023 <version>${project.version}</version>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040024 </dependency>
Joseph Chou5bd93f32017-09-06 16:54:33 -040025 <dependency>
26 <groupId>junit</groupId>
27 <artifactId>junit</artifactId>
28 <version>4.12</version>
29 <scope>test</scope>
30 </dependency>
Magnusen, Drew (dm741q)2f1ee652017-10-19 14:26:32 -050031 <dependency>
Liam Fallonfe4cd8e2017-12-14 07:40:18 -080032 <groupId>org.mockito</groupId>
33 <artifactId>mockito-core</artifactId>
34 <version>2.13.0</version>
35 <scope>test</scope>
36 </dependency>
37 <dependency>
38 <groupId>org.powermock</groupId>
39 <artifactId>powermock-core</artifactId>
40 <version>1.7.3</version>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.onap.policy.drools-pdp</groupId>
45 <artifactId>policy-endpoints</artifactId>
46 <version>${project.version}</version>
47 <scope>provided</scope>
48 </dependency>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040049 </dependencies>
50</project>