Updated the version to 1.2.0-SNAPSHOT
[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"
18     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19     <modelVersion>4.0.0</modelVersion>
20     <parent>
21         <groupId>org.onap.oparent</groupId>
22         <artifactId>oparent</artifactId>
23         <version>0.1.1</version>
24     </parent>
25
26     <groupId>org.onap.holmes.dsa</groupId>
27     <artifactId>holmes-dsa-parent</artifactId>
28     <version>1.2.0-SNAPSHOT</version>
29     <packaging>pom</packaging>
30     <name>holmes-dsa</name>
31     <modules>
32         <module>dmaap-dsa</module>
33         <module>dmaap-dsa-standalone</module>
34     </modules>
35
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         <powermock.version>1.6.5</powermock.version>
48
49
50         <stringtemplate.version>3.2.1</stringtemplate.version>
51         <mysql.connector.version>5.1.38</mysql.connector.version>
52         <dropwizard.version>1.3.0</dropwizard.version>
53         <swagger.version>1.5.3</swagger.version>
54         <lombok.version>1.16.8</lombok.version>
55         <jersey.version>2.22.2</jersey.version>
56         <jaxrs.consumer.version>5.0</jaxrs.consumer.version>
57         <slf4j.version>1.7.25</slf4j.version>
58         <quartz.version>2.2.1</quartz.version>
59
60
61         <packagename>onap-holmes-rulemgt</packagename>
62         <linux64id>linux64</linux64id>
63         <win64id>win64</win64id>
64         <linux64outputdir>target/assembly/${linux64id}</linux64outputdir>
65         <win64outputdir>target/assembly/${win64id}</win64outputdir>
66         <version.output>target/version</version.output>
67     </properties>
68     <dependencyManagement>
69         <dependencies>
70             <dependency>
71                 <groupId>org.onap.msb.java-sdk</groupId>
72                 <artifactId>msb-java-sdk</artifactId>
73                 <version>1.1.1</version>
74             </dependency>
75             <dependency>
76                 <groupId>org.easymock</groupId>
77                 <artifactId>easymock</artifactId>
78                 <version>3.0</version>
79             </dependency>
80             <dependency>
81                 <groupId>org.onap.holmes.common</groupId>
82                 <artifactId>holmes-actions</artifactId>
83                 <version>1.2.0-SNAPSHOT</version>
84             </dependency>
85             <dependency>
86                 <groupId>io.dropwizard</groupId>
87                 <artifactId>dropwizard-core</artifactId>
88                 <version>${dropwizard.version}</version>
89             </dependency>
90             <dependency>
91                 <groupId>io.dropwizard</groupId>
92                 <artifactId>dropwizard-db</artifactId>
93                 <version>${dropwizard.version}</version>
94             </dependency>
95             <dependency>
96                 <groupId>io.swagger</groupId>
97                 <artifactId>swagger-jersey2-jaxrs</artifactId>
98                 <version>${swagger.version}</version>
99                 <scope>provided</scope>
100             </dependency>
101
102             <dependency>
103                 <groupId>org.projectlombok</groupId>
104                 <artifactId>lombok</artifactId>
105                 <version>${lombok.version}</version>
106             </dependency>
107
108             <dependency>
109                 <groupId>org.slf4j</groupId>
110                 <artifactId>slf4j-api</artifactId>
111                 <version>${slf4j.version}</version>
112             </dependency>
113
114             <dependency>
115                 <groupId>org.antlr</groupId>
116                 <artifactId>stringtemplate</artifactId>
117                 <version>${stringtemplate.version}</version>
118             </dependency>
119
120             <dependency>
121                 <groupId>org.quartz-scheduler</groupId>
122                 <artifactId>quartz</artifactId>
123                 <version>${quartz.version}</version>
124             </dependency>
125
126             <dependency>
127                 <groupId>junit</groupId>
128                 <artifactId>junit</artifactId>
129                 <version>4.8.2</version>
130                 <scope>test</scope>
131             </dependency>
132
133             <dependency>
134                 <groupId>org.hamcrest</groupId>
135                 <artifactId>hamcrest-core</artifactId>
136                 <version>1.3</version>
137                 <scope>test</scope>
138             </dependency>
139
140             <dependency>
141                 <groupId>org.powermock</groupId>
142                 <artifactId>powermock-module-junit4</artifactId>
143                 <version>1.6.5</version>
144                 <scope>test</scope>
145             </dependency>
146         </dependencies>
147     </dependencyManagement>
148 </project>
149