update link to upper-constraints.txt
[holmes/engine-management.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3   ~ Copyright 2017 ZTE Corporation.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0"
18     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20     <modelVersion>4.0.0</modelVersion>
21     <parent>
22         <groupId>org.onap.oparent</groupId>
23         <artifactId>oparent</artifactId>
24         <version>1.2.0</version>
25     </parent>
26
27     <groupId>org.onap.holmes.engine-management</groupId>
28     <artifactId>holmes-engine-parent</artifactId>
29     <version>1.2.2-SNAPSHOT</version>
30     <packaging>pom</packaging>
31     <name>holmes-engine-management</name>
32     <modules>
33         <module>engine-d</module>
34         <module>engine-d-standalone</module>
35     </modules>
36     <properties>
37         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
39         <maven.test.skip>false</maven.test.skip>
40         <maven.test.failure.ignore>false</maven.test.failure.ignore>
41         <finalName>${project.artifactId}-${project.version}</finalName>
42         <release.dir>${basedir}/target</release.dir>
43         <bundle.name>${project.artifactId}-${project.version}</bundle.name>
44         <pkgzip.dir>${basedir}/../release/pkgzip</pkgzip.dir>
45         <excludesFile>**/*$*</excludesFile>
46         <nexusproxy>https://nexus.open-o.org/content</nexusproxy>
47
48         <stringtemplate.version>3.2.1</stringtemplate.version>
49         <postgres.jdbc.driver.version>42.2.5</postgres.jdbc.driver.version>
50         <dropwizard.version>1.3.0</dropwizard.version>
51         <swagger.version>1.5.3</swagger.version>
52         <lombok.version>1.16.8</lombok.version>
53         <jersey.version>2.22.2</jersey.version>
54         <jaxrs.consumer.version>5.0</jaxrs.consumer.version>
55         <slf4j.version>1.7.25</slf4j.version>
56         <reflections.version>0.9.9</reflections.version>
57         <quartz.version>2.2.1</quartz.version>
58
59         <packagename>onap-holmes-engine-d</packagename>
60         <linux64id>linux64</linux64id>
61         <win64id>win64</win64id>
62         <linux64outputdir>target/assembly/${linux64id}</linux64outputdir>
63         <win64outputdir>target/assembly/${win64id}</win64outputdir>
64         <version.output>target/version</version.output>
65     </properties>
66
67     <dependencyManagement>
68         <dependencies>
69             <dependency>
70                 <groupId>org.postgresql</groupId>
71                 <artifactId>postgresql</artifactId>
72                 <version>${postgres.jdbc.driver.version}</version>
73             </dependency>
74             <dependency>
75                 <groupId>org.onap.msb.java-sdk</groupId>
76                 <artifactId>msb-java-sdk</artifactId>
77                 <version>1.1.1</version>
78             </dependency>
79             <dependency>
80                 <groupId>com.eclipsesource.jaxrs</groupId>
81                 <artifactId>jersey-all</artifactId>
82                 <version>2.8</version>
83             </dependency>
84             <dependency>
85                 <groupId>org.reflections</groupId>
86                 <artifactId>reflections</artifactId>
87                 <version>${reflections.version}</version>
88             </dependency>
89             <dependency>
90                 <groupId>org.easymock</groupId>
91                 <artifactId>easymock</artifactId>
92                 <version>3.0</version>
93             </dependency>
94             <dependency>
95                 <groupId>org.onap.holmes.common</groupId>
96                 <artifactId>holmes-actions</artifactId>
97                 <version>1.2.6</version>
98             </dependency>
99             <dependency>
100                 <groupId>org.onap.holmes.dsa</groupId>
101                 <artifactId>dmaap-dsa</artifactId>
102                 <version>1.2.1</version>
103             </dependency>
104             <dependency>
105                 <groupId>io.dropwizard</groupId>
106                 <artifactId>dropwizard-core</artifactId>
107                 <version>${dropwizard.version}</version>
108             </dependency>
109             <dependency>
110                 <groupId>io.dropwizard</groupId>
111                 <artifactId>dropwizard-db</artifactId>
112                 <version>${dropwizard.version}</version>
113             </dependency>
114             <dependency>
115                 <groupId>io.dropwizard</groupId>
116                 <artifactId>dropwizard-jdbi</artifactId>
117                 <version>${dropwizard.version}</version>
118             </dependency>
119             <dependency>
120                 <groupId>io.swagger</groupId>
121                 <artifactId>swagger-jersey2-jaxrs</artifactId>
122                 <version>${swagger.version}</version>
123                 <scope>provided</scope>
124             </dependency>
125
126             <dependency>
127                 <groupId>org.projectlombok</groupId>
128                 <artifactId>lombok</artifactId>
129                 <version>${lombok.version}</version>
130             </dependency>
131
132             <dependency>
133                 <groupId>org.slf4j</groupId>
134                 <artifactId>slf4j-api</artifactId>
135                 <version>${slf4j.version}</version>
136             </dependency>
137
138             <dependency>
139                 <groupId>org.antlr</groupId>
140                 <artifactId>stringtemplate</artifactId>
141                 <version>${stringtemplate.version}</version>
142             </dependency>
143
144             <dependency>
145                 <groupId>org.quartz-scheduler</groupId>
146                 <artifactId>quartz</artifactId>
147                 <version>${quartz.version}</version>
148             </dependency>
149
150             <dependency>
151                 <groupId>junit</groupId>
152                 <artifactId>junit</artifactId>
153                 <version>4.8.2</version>
154                 <scope>test</scope>
155             </dependency>
156
157             <dependency>
158                 <groupId>org.hamcrest</groupId>
159                 <artifactId>hamcrest-core</artifactId>
160                 <version>1.3</version>
161                 <scope>test</scope>
162             </dependency>
163
164             <dependency>
165                 <groupId>org.powermock</groupId>
166                 <artifactId>powermock-module-junit4</artifactId>
167                 <version>1.6.5</version>
168                 <scope>test</scope>
169             </dependency>
170
171             <dependency>
172                 <groupId>org.powermock</groupId>
173                 <artifactId>powermock-api-mockito</artifactId>
174                 <version>1.7.1</version>
175                 <scope>test</scope>
176             </dependency>
177
178             <dependency>
179                 <groupId>org.apache.httpcomponents</groupId>
180                 <artifactId>httpclient</artifactId>
181                 <version>4.5.3</version>
182             </dependency>
183         </dependencies>
184     </dependencyManagement>
185 </project>
186