blob: bd2d4bbc138e103ecffd938c8e5cfffcb6600f12 [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>
3 <parent>
4 <groupId>org.onap.policy.drools-applications</groupId>
5 <artifactId>common</artifactId>
Jessica Wagantallcd2ec552017-11-18 18:36:44 -08006 <version>1.2.0-SNAPSHOT</version>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -04007 </parent>
8 <artifactId>guard</artifactId>
9 <dependencies>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040010 <dependency>
11 <groupId>org.onap.policy.drools-applications</groupId>
12 <artifactId>policy-yaml</artifactId>
Jorge Hernandez788954f2017-11-07 09:04:10 -060013 <version>${project.version}</version>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040014 <scope>provided</scope>
15 </dependency>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040016 <dependency>
17 <groupId>com.att.research.xacml</groupId>
18 <artifactId>xacml-pdp</artifactId>
19 <version>1.0.0</version>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040020 </dependency>
21 <dependency>
22 <groupId>junit</groupId>
23 <artifactId>junit</artifactId>
24 <version>4.12</version>
liamfallon8a1bd0d2018-02-06 14:17:36 +000025 <scope>test</scope>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040026 </dependency>
27 <dependency>
28 <groupId>commons-io</groupId>
29 <artifactId>commons-io</artifactId>
Jorge Hernandez3b25dd82017-08-30 23:42:35 -050030 <version>2.5</version>
31 <scope>provided</scope>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040032 </dependency>
33 <dependency>
34 <groupId>org.apache.httpcomponents</groupId>
35 <artifactId>httpclient</artifactId>
Pamela Dragosh67d284b2018-02-07 11:01:19 -050036 <version>4.5.5</version>
Jorge Hernandez3b25dd82017-08-30 23:42:35 -050037 <scope>provided</scope>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040038 </dependency>
39 <dependency>
40 <groupId>org.drools</groupId>
41 <artifactId>drools-core</artifactId>
Jorge Hernandez3b25dd82017-08-30 23:42:35 -050042 <version>6.5.0.Final</version>
43 <scope>provided</scope>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040044 </dependency>
45 <dependency>
46 <groupId>org.eclipse.persistence</groupId>
47 <artifactId>org.eclipse.persistence.jpa</artifactId>
Jorge Hernandez3b25dd82017-08-30 23:42:35 -050048 <version>2.7.0</version>
49 <scope>provided</scope>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040050 </dependency>
Temoc Rodriguezfa9ed5f2017-09-19 11:13:34 -070051 <dependency>
52 <groupId>org.onap.policy.drools-pdp</groupId>
53 <artifactId>policy-management</artifactId>
Jorge Hernandez788954f2017-11-07 09:04:10 -060054 <version>${project.version}</version>
Temoc Rodriguezfa9ed5f2017-09-19 11:13:34 -070055 <scope>provided</scope>
56 </dependency>
Temoc Rodriguez4c8000e2017-12-14 15:58:32 -080057 <dependency>
58 <groupId>org.onap.policy.drools-applications</groupId>
59 <artifactId>simulators</artifactId>
60 <version>${project.version}</version>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.mockito</groupId>
65 <artifactId>mockito-core</artifactId>
66 <version>2.13.0</version>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>com.h2database</groupId>
71 <artifactId>h2</artifactId>
72 <version>[1.4.186,)</version>
73 <scope>test</scope>
74 </dependency>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040075 </dependencies>
76</project>