Changed the Component Version to 1.2.0
[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</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</version>
83             </dependency>
84             <dependency>
85                 <groupId>io.dropwizard</groupId>
86                 <artifactId>dropwizard-core</artifactId>
87                 <version>${dropwizard.version}</version>
88                 <exclusions>
89                     <exclusion>
90                         <groupId>org.eclipse.jetty</groupId>
91                         <artifactId>jetty-http</artifactId>
92                     </exclusion>
93                     <exclusion>
94                         <groupId>org.eclipse.jetty</groupId>
95                         <artifactId>jetty-util</artifactId>
96                     </exclusion>
97                     <exclusion>
98                         <groupId>org.eclipse.jetty</groupId>
99                         <artifactId>jetty-server</artifactId>
100                     </exclusion>
101                 </exclusions>
102             </dependency>
103             <dependency>
104                 <groupId>org.eclipse.jetty</groupId>
105                 <artifactId>jetty-server</artifactId>
106                 <version>9.4.11.v20180605</version>
107             </dependency>
108             <dependency>
109                 <groupId>org.eclipse.jetty</groupId>
110                 <artifactId>jetty-http</artifactId>
111                 <version>9.4.11.v20180605</version>
112             </dependency>
113             <dependency>
114                 <groupId>org.eclipse.jetty</groupId>
115                 <artifactId>jetty-util</artifactId>
116                 <version>9.4.11.v20180605</version>
117             </dependency>
118             <dependency>
119                 <groupId>io.dropwizard</groupId>
120                 <artifactId>dropwizard-db</artifactId>
121                 <version>${dropwizard.version}</version>
122             </dependency>
123             <dependency>
124                 <groupId>io.swagger</groupId>
125                 <artifactId>swagger-jersey2-jaxrs</artifactId>
126                 <version>${swagger.version}</version>
127                 <scope>provided</scope>
128             </dependency>
129
130             <dependency>
131                 <groupId>org.projectlombok</groupId>
132                 <artifactId>lombok</artifactId>
133                 <version>${lombok.version}</version>
134             </dependency>
135
136             <dependency>
137                 <groupId>org.slf4j</groupId>
138                 <artifactId>slf4j-api</artifactId>
139                 <version>${slf4j.version}</version>
140             </dependency>
141
142             <dependency>
143                 <groupId>org.antlr</groupId>
144                 <artifactId>stringtemplate</artifactId>
145                 <version>${stringtemplate.version}</version>
146             </dependency>
147
148             <dependency>
149                 <groupId>org.quartz-scheduler</groupId>
150                 <artifactId>quartz</artifactId>
151                 <version>${quartz.version}</version>
152             </dependency>
153
154             <dependency>
155                 <groupId>junit</groupId>
156                 <artifactId>junit</artifactId>
157                 <version>4.8.2</version>
158                 <scope>test</scope>
159             </dependency>
160
161             <dependency>
162                 <groupId>org.hamcrest</groupId>
163                 <artifactId>hamcrest-core</artifactId>
164                 <version>1.3</version>
165                 <scope>test</scope>
166             </dependency>
167
168             <dependency>
169                 <groupId>org.powermock</groupId>
170                 <artifactId>powermock-module-junit4</artifactId>
171                 <version>1.6.5</version>
172                 <scope>test</scope>
173             </dependency>
174         </dependencies>
175     </dependencyManagement>
176 </project>