a05b80b54d91f040d4fdd0e18c0a0961e6bdcedb
[holmes/dsa.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" 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">
18     <modelVersion>4.0.0</modelVersion>
19     <parent>
20         <groupId>org.onap.oparent</groupId>
21         <artifactId>oparent</artifactId>
22         <version>1.2.0</version>
23     </parent>
24
25     <groupId>org.onap.holmes.dsa</groupId>
26     <artifactId>holmes-dsa-parent</artifactId>
27     <version>1.2.0-SNAPSHOT</version>
28     <packaging>pom</packaging>
29     <name>holmes-dsa</name>
30     <modules>
31         <module>dmaap-dsa</module>
32         <module>dmaap-dsa-standalone</module>
33     </modules>
34
35     <properties>
36         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
38         <maven.test.skip>false</maven.test.skip>
39         <maven.test.failure.ignore>false</maven.test.failure.ignore>
40         <finalName>${project.artifactId}-${project.version}</finalName>
41         <release.dir>${basedir}/target</release.dir>
42         <bundle.name>${project.artifactId}-${project.version}</bundle.name>
43         <pkgzip.dir>${basedir}/../release/pkgzip</pkgzip.dir>
44         <excludesFile>**/*$*</excludesFile>
45         <nexusproxy>https://nexus.open-o.org/content</nexusproxy>
46         <powermock.version>1.6.5</powermock.version>
47
48
49         <stringtemplate.version>3.2.1</stringtemplate.version>
50         <mysql.connector.version>5.1.38</mysql.connector.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         <quartz.version>2.2.1</quartz.version>
58
59
60         <packagename>onap-holmes-rulemgt</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     <dependencyManagement>
68         <dependencies>
69             <dependency>
70                 <groupId>org.onap.msb.java-sdk</groupId>
71                 <artifactId>msb-java-sdk</artifactId>
72                 <version>1.1.1</version>
73             </dependency>
74             <dependency>
75                 <groupId>org.easymock</groupId>
76                 <artifactId>easymock</artifactId>
77                 <version>3.0</version>
78             </dependency>
79             <dependency>
80                 <groupId>org.onap.holmes.common</groupId>
81                 <artifactId>holmes-actions</artifactId>
82                 <version>1.2.0-SNAPSHOT</version>
83             </dependency>
84             <dependency>
85                 <groupId>io.dropwizard</groupId>
86                 <artifactId>dropwizard-core</artifactId>
87                 <version>${dropwizard.version}</version>
88             </dependency>
89             <dependency>
90                 <groupId>io.dropwizard</groupId>
91                 <artifactId>dropwizard-db</artifactId>
92                 <version>${dropwizard.version}</version>
93             </dependency>
94             <dependency>
95                 <groupId>io.swagger</groupId>
96                 <artifactId>swagger-jersey2-jaxrs</artifactId>
97                 <version>${swagger.version}</version>
98                 <scope>provided</scope>
99             </dependency>
100
101             <dependency>
102                 <groupId>org.projectlombok</groupId>
103                 <artifactId>lombok</artifactId>
104                 <version>${lombok.version}</version>
105             </dependency>
106
107             <dependency>
108                 <groupId>org.slf4j</groupId>
109                 <artifactId>slf4j-api</artifactId>
110                 <version>${slf4j.version}</version>
111             </dependency>
112
113             <dependency>
114                 <groupId>org.antlr</groupId>
115                 <artifactId>stringtemplate</artifactId>
116                 <version>${stringtemplate.version}</version>
117             </dependency>
118
119             <dependency>
120                 <groupId>org.quartz-scheduler</groupId>
121                 <artifactId>quartz</artifactId>
122                 <version>${quartz.version}</version>
123             </dependency>
124
125             <dependency>
126                 <groupId>junit</groupId>
127                 <artifactId>junit</artifactId>
128                 <version>4.8.2</version>
129                 <scope>test</scope>
130             </dependency>
131
132             <dependency>
133                 <groupId>org.hamcrest</groupId>
134                 <artifactId>hamcrest-core</artifactId>
135                 <version>1.3</version>
136                 <scope>test</scope>
137             </dependency>
138
139             <dependency>
140                 <groupId>org.powermock</groupId>
141                 <artifactId>powermock-module-junit4</artifactId>
142                 <version>1.6.5</version>
143                 <scope>test</scope>
144             </dependency>
145         </dependencies>
146     </dependencyManagement>
147 </project>