Bump up artifacts version to 1.1.3-SNAPSHOT
[policy/engine.git] / PolicyEngineUtils / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine
4   ================================================================================
5   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10   
11        http://www.apache.org/licenses/LICENSE-2.0
12   
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ============LICENSE_END=========================================================
19   -->
20 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22         <modelVersion>4.0.0</modelVersion>
23         <parent>
24                 <groupId>org.onap.policy.engine</groupId>
25                 <artifactId>PolicyEngineSuite</artifactId>
26                 <version>1.1.3-SNAPSHOT</version>
27         </parent>
28         <artifactId>PolicyEngineUtils</artifactId>
29         <dependencies>
30                 <dependency>
31                         <groupId>org.onap.policy.common</groupId>
32                         <artifactId>integrity-monitor</artifactId>
33                         <version>${project.version}</version>
34                 </dependency>
35                 <dependency>
36                         <groupId>org.onap.policy.common</groupId>
37                         <artifactId>integrity-audit</artifactId>
38                         <version>${project.version}</version>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.onap.policy.common</groupId>
42                         <artifactId>ONAP-Logging</artifactId>
43                         <version>${project.version}</version>
44                         <exclusions>
45                                 <exclusion>
46                                         <groupId>org.powermock</groupId>
47                                         <artifactId>powermock-module-junit4</artifactId>
48                                 </exclusion>
49                                 <exclusion>
50                                         <groupId>org.powermock</groupId>
51                                         <artifactId>powermock-core</artifactId>
52                                 </exclusion>
53                         </exclusions>
54                 </dependency>
55                 <dependency>
56                         <groupId>org.eclipse.persistence</groupId>
57                         <artifactId>javax.persistence</artifactId>
58                         <version>2.1.0</version>
59                 </dependency>
60                 <dependency>
61                         <groupId>org.eclipse.persistence</groupId>
62                         <artifactId>eclipselink</artifactId>
63                         <version>2.6.0</version>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.mariadb.jdbc</groupId>
67                         <artifactId>mariadb-java-client</artifactId>
68                         <version>2.1.1</version>
69                 </dependency>
70                 <dependency>
71                         <groupId>com.fasterxml.jackson.core</groupId>
72                         <artifactId>jackson-databind</artifactId>
73                         <version>2.7.5</version>
74                 </dependency>
75                 <dependency>
76                         <groupId>com.github.fge</groupId>
77                         <artifactId>json-patch</artifactId>
78                         <version>1.9</version>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.apache.maven</groupId>
82                         <artifactId>maven-model</artifactId>
83                         <version>3.3.9</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>junit</groupId>
87                         <artifactId>junit</artifactId>
88                         <version>4.11</version>
89                         <scope>test</scope>
90                 </dependency>
91                 <dependency>
92                         <groupId>org.mariadb.jdbc</groupId>
93                         <artifactId>mariadb-java-client</artifactId>
94                         <version>1.2.3</version>
95                 </dependency>
96                 <dependency>
97                         <groupId>org.drools</groupId>
98                         <artifactId>drools-verifier</artifactId>
99                         <version>6.3.0.Final</version>
100                         <exclusions>
101                                 <exclusion>
102                                         <groupId>com.google.guava</groupId>
103                                         <artifactId>guava</artifactId>
104                                 </exclusion>
105                                 <exclusion>
106                                         <groupId>com.lowagie</groupId>
107                                 <artifactId>itext</artifactId>
108                                 </exclusion>
109                         </exclusions>
110                 </dependency>
111                 <dependency>
112                         <groupId>com.att.cadi</groupId>
113                         <artifactId>cadi-aaf</artifactId>
114                         <version>1.3.0</version>
115                 </dependency>
116                 <dependency>
117                     <groupId>com.google.code.gson</groupId>
118             <artifactId>gson</artifactId>
119             <version>2.8.1</version>
120         </dependency>
121                 <dependency>
122                         <groupId>com.att.aft</groupId>
123                         <artifactId>dme2</artifactId>
124                         <version>3.1.200</version>
125                 </dependency>
126                 <dependency>
127                         <groupId>com.att.nsa</groupId>
128                         <artifactId>dmaapClient</artifactId>
129                         <version>0.2.12</version>
130                         <exclusions>
131                                 <exclusion>
132                                         <groupId>org.slf4j</groupId>
133                                         <artifactId>slf4j-log4j12</artifactId>
134                                 </exclusion>
135                         </exclusions>
136                 </dependency>
137         </dependencies>
138 </project>