Modify engine mq
[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.openo.oparent</groupId>
23         <artifactId>oparent</artifactId>
24         <version>1.1.0-SNAPSHOT</version>
25         <relativePath>../oparent</relativePath>
26     </parent>
27
28     <groupId>org.openo.holmes.engine-management</groupId>
29     <artifactId>holmes-engine-parent</artifactId>
30     <packaging>pom</packaging>
31     <name>holmes-engine-parent</name>
32     <modules>
33         <module>engine-d</module>
34     </modules>
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
47
48         <stringtemplate.version>3.2.1</stringtemplate.version>
49         <mysql.connector.version>5.1.38</mysql.connector.version>
50         <dropwizard.version>0.8.0</dropwizard.version>
51         <swagger.version>1.5.3</swagger.version>
52         <lombok.version>1.16.4</lombok.version>
53         <jersey.version>2.22.2</jersey.version>
54         <jaxrs.consumer.version>5.0</jaxrs.consumer.version>
55         <slf4j.version>1.6.1</slf4j.version>
56         <quartz.version>2.2.1</quartz.version>
57     </properties>
58     <dependencyManagement>
59         <dependencies>
60             <dependency>
61                 <groupId>org.easymock</groupId>
62                 <artifactId>easymock</artifactId>
63                 <version>3.0</version>
64             </dependency>
65             <dependency>
66                 <groupId>org.openo.holmes.actions</groupId>
67                 <artifactId>holmes-actions</artifactId>
68                 <version>${project.version}</version>
69             </dependency>
70             <dependency>
71                 <groupId>io.dropwizard</groupId>
72                 <artifactId>dropwizard-core</artifactId>
73                 <version>${dropwizard.version}</version>
74                 <scope>provided</scope>
75             </dependency>
76             <dependency>
77                 <groupId>io.dropwizard</groupId>
78                 <artifactId>dropwizard-db</artifactId>
79                 <version>${dropwizard.version}</version>
80             </dependency>
81             <dependency>
82                 <groupId>io.swagger</groupId>
83                 <artifactId>swagger-jersey2-jaxrs</artifactId>
84                 <version>${swagger.version}</version>
85                 <scope>provided</scope>
86             </dependency>
87
88             <dependency>
89                 <groupId>org.projectlombok</groupId>
90                 <artifactId>lombok</artifactId>
91                 <version>${lombok.version}</version>
92             </dependency>
93
94
95             <dependency>
96                 <groupId>org.slf4j</groupId>
97                 <artifactId>slf4j-api</artifactId>
98                 <version>${slf4j.version}</version>
99             </dependency>
100
101             <dependency>
102                 <groupId>mysql</groupId>
103                 <artifactId>mysql-connector-java</artifactId>
104                 <version>${mysql.connector.version}</version>
105             </dependency>
106
107             <dependency>
108                 <groupId>org.antlr</groupId>
109                 <artifactId>stringtemplate</artifactId>
110                 <version>${stringtemplate.version}</version>
111             </dependency>
112
113             <dependency>
114                 <groupId>org.openo.common-services.common-utilities</groupId>
115                 <artifactId>dropwizard-ioc-container</artifactId>
116                 <version>${project.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.4</version>
143                 <scope>test</scope>
144             </dependency>
145
146             <dependency>
147                 <groupId>org.openo.client.cli</groupId>
148                 <artifactId>swagger-sdk</artifactId>
149                 <version>1.1.0-SNAPSHOT</version>
150             </dependency>
151         </dependencies>
152     </dependencyManagement>
153
154 </project>
155