blob: 36c7e1918543fb3033acddf4bdde9beee497f2d6 [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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2 <modelVersion>4.0.0</modelVersion>
liamfallondef0f112018-02-13 11:29:56 +00003
4 <parent>
5 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
6 <artifactId>common</artifactId>
7 <version>1.2.0-SNAPSHOT</version>
8 </parent>
9
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040010 <artifactId>guard</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000011
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040012 <dependencies>
liamfallondef0f112018-02-13 11:29:56 +000013 <dependency>
14 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
15 <artifactId>policy-yaml</artifactId>
16 <version>${project.version}</version>
17 <scope>provided</scope>
18 </dependency>
19 <dependency>
20 <groupId>com.att.research.xacml</groupId>
21 <artifactId>xacml-pdp</artifactId>
22 <version>1.0.1</version>
23 </dependency>
24 <dependency>
25 <groupId>junit</groupId>
26 <artifactId>junit</artifactId>
27 <version>4.12</version>
28 <scope>test</scope>
29 </dependency>
30 <dependency>
31 <groupId>commons-io</groupId>
32 <artifactId>commons-io</artifactId>
33 <version>2.5</version>
34 <scope>provided</scope>
35 </dependency>
36 <dependency>
37 <groupId>org.apache.httpcomponents</groupId>
38 <artifactId>httpclient</artifactId>
39 <version>4.5.5</version>
40 <scope>provided</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.drools</groupId>
44 <artifactId>drools-core</artifactId>
45 <version>6.5.0.Final</version>
46 <scope>provided</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.eclipse.persistence</groupId>
50 <artifactId>org.eclipse.persistence.jpa</artifactId>
51 <version>2.7.0</version>
52 <scope>provided</scope>
53 </dependency>
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>
60 <dependency>
61 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
62 <artifactId>simulators</artifactId>
63 <version>${project.version}</version>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.mockito</groupId>
68 <artifactId>mockito-core</artifactId>
69 <version>2.13.0</version>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>com.h2database</groupId>
74 <artifactId>h2</artifactId>
75 <version>[1.4.186,)</version>
76 <scope>test</scope>
77 </dependency>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040078 </dependencies>
79</project>