d7d8d2bbf6ba822a548565cea48af0f1371b7038
[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>0.1.1</version>
25     </parent>
26
27     <groupId>org.onap.holmes.engine-management</groupId>
28     <artifactId>holmes-engine-parent</artifactId>
29     <version>1.1.0-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
49         <stringtemplate.version>3.2.1</stringtemplate.version>
50         <postgres.jdbc.driver.version>42.1.1</postgres.jdbc.driver.version>
51         <dropwizard.version>1.3.0</dropwizard.version>
52         <swagger.version>1.5.3</swagger.version>
53         <lombok.version>1.16.8</lombok.version>
54         <jersey.version>2.22.2</jersey.version>
55         <jaxrs.consumer.version>5.0</jaxrs.consumer.version>
56         <slf4j.version>1.7.25</slf4j.version>
57         <reflections.version>0.9.9</reflections.version>
58         <quartz.version>2.2.1</quartz.version>
59
60         <packagename>onap-holmes-engine-d</packagename>
61         <linux64id>linux64</linux64id>
62         <win64id>win64</win64id>
63         <linux64outputdir>target/assembly/${linux64id}</linux64outputdir>
64         <win64outputdir>target/assembly/${win64id}</win64outputdir>
65         <version.output>target/version</version.output>
66     </properties>
67
68     <dependencyManagement>
69         <dependencies>
70             <dependency>
71                 <groupId>org.postgresql</groupId>
72                 <artifactId>postgresql</artifactId>
73                 <version>${postgres.jdbc.driver.version}</version>
74             </dependency>
75             <dependency>
76                 <groupId>org.onap.msb.java-sdk</groupId>
77                 <artifactId>msb-java-sdk</artifactId>
78                 <version>1.1.0-SNAPSHOT</version>
79             </dependency>
80             <dependency>
81                 <groupId>com.eclipsesource.jaxrs</groupId>
82                 <artifactId>jersey-all</artifactId>
83                 <version>2.8</version>
84             </dependency>
85             <dependency>
86                 <groupId>org.reflections</groupId>
87                 <artifactId>reflections</artifactId>
88                 <version>${reflections.version}</version>
89             </dependency>
90             <dependency>
91                 <groupId>org.easymock</groupId>
92                 <artifactId>easymock</artifactId>
93                 <version>3.0</version>
94             </dependency>
95             <dependency>
96                 <groupId>org.onap.holmes.common</groupId>
97                 <artifactId>holmes-actions</artifactId>
98                 <version>1.1.0-SNAPSHOT</version>
99             </dependency>
100             <dependency>
101                 <groupId>org.onap.holmes.dsa</groupId>
102                 <artifactId>dmaap-dsa</artifactId>
103                 <version>1.1.0-SNAPSHOT</version>
104             </dependency>
105             <dependency>
106                 <groupId>io.dropwizard</groupId>
107                 <artifactId>dropwizard-core</artifactId>
108                 <version>${dropwizard.version}</version>
109             </dependency>
110             <dependency>
111                 <groupId>io.dropwizard</groupId>
112                 <artifactId>dropwizard-db</artifactId>
113                 <version>${dropwizard.version}</version>
114             </dependency>
115             <dependency>
116                 <groupId>io.swagger</groupId>
117                 <artifactId>swagger-jersey2-jaxrs</artifactId>
118                 <version>${swagger.version}</version>
119                 <scope>provided</scope>
120             </dependency>
121
122             <dependency>
123                 <groupId>org.projectlombok</groupId>
124                 <artifactId>lombok</artifactId>
125                 <version>${lombok.version}</version>
126             </dependency>
127
128             <dependency>
129                 <groupId>org.slf4j</groupId>
130                 <artifactId>slf4j-api</artifactId>
131                 <version>${slf4j.version}</version>
132             </dependency>
133
134             <dependency>
135                 <groupId>org.antlr</groupId>
136                 <artifactId>stringtemplate</artifactId>
137                 <version>${stringtemplate.version}</version>
138             </dependency>
139
140             <dependency>
141                 <groupId>org.quartz-scheduler</groupId>
142                 <artifactId>quartz</artifactId>
143                 <version>${quartz.version}</version>
144             </dependency>
145
146             <dependency>
147                 <groupId>junit</groupId>
148                 <artifactId>junit</artifactId>
149                 <version>4.8.2</version>
150                 <scope>test</scope>
151             </dependency>
152
153             <dependency>
154                 <groupId>org.hamcrest</groupId>
155                 <artifactId>hamcrest-core</artifactId>
156                 <version>1.3</version>
157                 <scope>test</scope>
158             </dependency>
159
160             <dependency>
161                 <groupId>org.powermock</groupId>
162                 <artifactId>powermock-module-junit4</artifactId>
163                 <version>1.6.5</version>
164                 <scope>test</scope>
165             </dependency>
166
167             <dependency>
168                 <groupId>org.powermock</groupId>
169                 <artifactId>powermock-api-mockito</artifactId>
170                 <version>1.7.1</version>
171                 <scope>test</scope>
172             </dependency>
173
174             <dependency>
175                 <groupId>org.apache.httpcomponents</groupId>
176                 <artifactId>httpclient</artifactId>
177                 <version>4.5.3</version>
178             </dependency>
179
180             <dependency>
181                 <groupId>com.google.guava</groupId>
182                 <artifactId>guava</artifactId>
183                 <version>19.0</version>
184             </dependency>
185         </dependencies>
186     </dependencyManagement>
187 </project>
188