Resolve security issues SONATYPE-2017-0359
[policy/drools-applications.git] / controlloop / common / guard / pom.xml
1 <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>
6                 <version>1.2.0-SNAPSHOT</version>
7         </parent>
8   <artifactId>guard</artifactId>
9   <dependencies>
10                 <dependency>
11                         <groupId>org.onap.policy.drools-applications</groupId>
12                         <artifactId>policy-yaml</artifactId>
13                         <version>${project.version}</version>
14                         <scope>provided</scope>
15                 </dependency>
16         <dependency>
17                 <groupId>com.att.research.xacml</groupId>
18                 <artifactId>xacml-pdp</artifactId>
19                 <version>1.0.0</version>
20         </dependency>
21         <dependency>
22                         <groupId>junit</groupId>
23                         <artifactId>junit</artifactId>
24                         <version>4.12</version>
25                         <scope>test</scope>
26                 </dependency>
27         <dependency>
28                         <groupId>commons-io</groupId>
29                         <artifactId>commons-io</artifactId>
30                         <version>2.5</version>
31                         <scope>provided</scope>
32                 </dependency>
33         <dependency>
34                         <groupId>org.apache.httpcomponents</groupId>
35                         <artifactId>httpclient</artifactId>
36                         <version>4.5.5</version>
37                         <scope>provided</scope>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.drools</groupId>
41                         <artifactId>drools-core</artifactId>
42                         <version>6.5.0.Final</version>
43                         <scope>provided</scope>
44                 </dependency>
45                 <dependency>
46             <groupId>org.eclipse.persistence</groupId>
47             <artifactId>org.eclipse.persistence.jpa</artifactId>
48             <version>2.7.0</version>
49                         <scope>provided</scope>
50         </dependency>
51         <dependency>
52                 <groupId>org.onap.policy.drools-pdp</groupId>
53                 <artifactId>policy-management</artifactId>
54                 <version>${project.version}</version>
55                 <scope>provided</scope>
56         </dependency>
57         <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>
75   </dependencies>
76 </project>