Add engine
[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" 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.openo.oparent</groupId>
22         <artifactId>oparent</artifactId>
23         <version>1.1.0-SNAPSHOT</version>
24         <relativePath>../oparent</relativePath>
25     </parent>
26
27     <groupId>org.openo.holmes.engine-management</groupId>
28     <artifactId>holmes-engine-parent</artifactId>
29     <packaging>pom</packaging>
30     <name>holmes-engine-parent</name>
31     <modules>
32         <module>engine-d</module>
33     </modules>
34     <properties>
35         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
37         <maven.test.skip>false</maven.test.skip>
38         <maven.test.failure.ignore>false</maven.test.failure.ignore>
39         <finalName>${project.artifactId}-${project.version}</finalName>
40         <release.dir>${basedir}/target</release.dir>
41         <bundle.name>${project.artifactId}-${project.version}</bundle.name>
42         <pkgzip.dir>${basedir}/../release/pkgzip</pkgzip.dir>
43         <excludesFile>**/*$*</excludesFile>
44         <nexusproxy>https://nexus.open-o.org/content</nexusproxy>
45
46
47         <stringtemplate.version>3.2.1</stringtemplate.version>
48         <mysql.connector.version>5.1.38</mysql.connector.version>
49         <dropwizard.version>0.8.0</dropwizard.version>
50         <swagger.version>1.5.3</swagger.version>
51         <lombok.version>1.16.4</lombok.version>
52         <jersey.version>2.22.2</jersey.version>
53         <jaxrs.consumer.version>5.0</jaxrs.consumer.version>
54         <slf4j.version>1.6.1</slf4j.version>
55         <quartz.version>2.2.1</quartz.version>
56     </properties>
57     <dependencyManagement>
58         <dependencies>
59             <dependency>
60                 <groupId>org.openo.holmes.actions</groupId>
61                 <artifactId>holmes-actions</artifactId>
62                 <version>${project.version}</version>
63             </dependency>
64             <dependency>
65                 <groupId>io.dropwizard</groupId>
66                 <artifactId>dropwizard-core</artifactId>
67                 <version>${dropwizard.version}</version>
68                 <scope>provided</scope>
69             </dependency>
70
71             <dependency>
72                 <groupId>io.dropwizard</groupId>
73                 <artifactId>dropwizard-db</artifactId>
74                 <version>${dropwizard.version}</version>
75             </dependency>
76             <dependency>
77                 <groupId>io.swagger</groupId>
78                 <artifactId>swagger-jersey2-jaxrs</artifactId>
79                 <version>${swagger.version}</version>
80             </dependency>
81
82             <dependency>
83                 <groupId>org.projectlombok</groupId>
84                 <artifactId>lombok</artifactId>
85                 <version>${lombok.version}</version>
86             </dependency>
87
88
89             <dependency>
90                 <groupId>org.slf4j</groupId>
91                 <artifactId>slf4j-api</artifactId>
92                 <version>${slf4j.version}</version>
93             </dependency>
94
95             <dependency>
96                 <groupId>mysql</groupId>
97                 <artifactId>mysql-connector-java</artifactId>
98                 <version>${mysql.connector.version}</version>
99             </dependency>
100
101             <dependency>
102                 <groupId>org.antlr</groupId>
103                 <artifactId>stringtemplate</artifactId>
104                 <version>${stringtemplate.version}</version>
105             </dependency>
106
107             <dependency>
108                 <groupId>org.openo.common-services.common-utilities</groupId>
109                 <artifactId>dropwizard-ioc-container</artifactId>
110                 <version>${project.version}</version>
111             </dependency>
112
113             <dependency>
114                 <groupId>org.quartz-scheduler</groupId>
115                 <artifactId>quartz</artifactId>
116                 <version>${quartz.version}</version>
117             </dependency>
118
119             <dependency>
120                 <groupId>junit</groupId>
121                 <artifactId>junit</artifactId>
122                 <version>4.8.2</version>
123                 <scope>test</scope>
124             </dependency>
125
126             <dependency>
127                 <groupId>org.hamcrest</groupId>
128                 <artifactId>hamcrest-core</artifactId>
129                 <version>1.3</version>
130                 <scope>test</scope>
131             </dependency>
132
133             <dependency>
134                 <groupId>org.powermock</groupId>
135                 <artifactId>powermock-module-junit4</artifactId>
136                 <version>1.6.4</version>
137                 <scope>test</scope>
138             </dependency>
139         </dependencies>
140     </dependencyManagement>
141
142 </project>
143