Bump up artifacts version to 1.1.3-SNAPSHOT
[policy/engine.git] / PolicyEngineAPI / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP Policy Engine
5   ================================================================================
6   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11   
12        http://www.apache.org/licenses/LICENSE-2.0
13   
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
20   -->
21
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         
26         <parent>
27                 <groupId>org.onap.policy.engine</groupId>
28                 <artifactId>PolicyEngineSuite</artifactId>
29                 <version>1.1.3-SNAPSHOT</version>
30         </parent>
31         
32         <artifactId>PolicyEngineAPI</artifactId>
33         <dependencies>
34                 <dependency>
35                         <groupId>com.fasterxml.jackson.core</groupId>
36                         <artifactId>jackson-databind</artifactId>
37                         <version>2.8.5</version>
38                 </dependency>
39                 <dependency>
40                         <groupId>org.glassfish</groupId>
41                         <artifactId>javax.json</artifactId>
42                         <version>1.0.4</version>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.apache.httpcomponents</groupId>
46                         <artifactId>httpclient</artifactId>
47                         <version>4.3.1</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>commons-io</groupId>
51                         <artifactId>commons-io</artifactId>
52                         <version>2.4</version>
53                 </dependency>
54                 <dependency>
55                         <groupId>com.google.guava</groupId>
56                         <artifactId>guava</artifactId>
57                         <version>14.0.1</version>
58                 </dependency>
59                 <dependency>
60                 <groupId>commons-fileupload</groupId>
61                 <artifactId>commons-fileupload</artifactId>
62                 <version>1.3.1</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>junit</groupId>
66                         <artifactId>junit</artifactId>
67                         <version>4.11</version>
68                         <scope>test</scope>
69                 </dependency>
70                 <dependency>
71                         <groupId>javax.websocket</groupId>
72                         <artifactId>javax.websocket-api</artifactId>
73                         <version>1.1</version>
74                 </dependency>
75                 <dependency>
76                         <groupId>org.glassfish.tyrus</groupId>
77                         <artifactId>tyrus-client</artifactId>
78                         <version>1.13</version>
79                 </dependency>
80                 <dependency>
81                         <groupId>org.glassfish.tyrus</groupId>
82                         <artifactId>tyrus-container-grizzly-client</artifactId>
83                         <version>1.13</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.springframework</groupId>
87                         <artifactId>spring-webmvc</artifactId>
88                         <version>4.3.3.RELEASE</version>
89                 </dependency>
90                 <dependency>
91                     <groupId>com.google.code.gson</groupId>
92                 <artifactId>gson</artifactId>
93                 <version>2.8.0</version>
94                 </dependency>
95                 <dependency>
96                         <groupId>log4j</groupId>
97                         <artifactId>log4j</artifactId>
98                         <version>1.2.17</version>
99                 </dependency>
100                 <dependency>
101                         <groupId>com.att.nsa</groupId>
102                         <artifactId>cambriaClient</artifactId>
103                         <version>0.0.1</version>
104                         <exclusions>
105                                 <exclusion>
106                                         <groupId>org.slf4j</groupId>
107                                         <artifactId>slf4j-log4j12</artifactId>
108                                 </exclusion>
109                         </exclusions>
110                 </dependency>
111                 <dependency>
112                         <groupId>org.onap.policy.engine</groupId>
113                         <artifactId>ONAP-XACML</artifactId>
114                         <version>${project.version}</version>
115                         <exclusions>
116                                 <exclusion>
117                                         <groupId>org.powermock</groupId>
118                                         <artifactId>powermock-api-mockito</artifactId>
119                                 </exclusion>
120                         </exclusions>
121                 </dependency>
122                 <!-- https://mvnrepository.com/artifact/org.mockito/mockito-all -->
123                 <dependency>
124                     <groupId>org.mockito</groupId>
125                     <artifactId>mockito-all</artifactId>
126                     <version>1.10.19</version>
127                 </dependency>
128         </dependencies>
129         <build>
130                 <plugins>
131                         <plugin>
132                                 <groupId>org.apache.maven.plugins</groupId>
133                                 <artifactId>maven-compiler-plugin</artifactId>
134                                 <version>3.2</version>
135                                 <configuration>
136                                         <source>1.8</source>
137                                         <target>1.8</target>
138                                 </configuration>
139                         </plugin>
140                         <plugin>
141                                 <!-- Dependency version for Clients who need it -->
142                                 <groupId>org.apache.maven.plugins</groupId>
143                                 <artifactId>maven-assembly-plugin</artifactId>
144                                 <version>2.2</version>
145                                 <configuration>
146                                         <descriptorRefs>
147                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
148                                         </descriptorRefs>
149                                 </configuration>
150                                 <executions>
151                                         <execution>
152                                                 <id>make-assembly</id>
153                                                 <phase>package</phase>
154                                                 <goals>
155                                                         <goal>single</goal>
156                                                 </goals>
157                                         </execution>
158                                 </executions>
159                         </plugin>
160                 </plugins>
161         </build>
162 </project>