Merge "Fix DbDaoUtil.java code"
[holmes/common.git] / holmes-actions / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!-- Copyright 2017 ZTE Corporation. Licensed under the Apache License, Version\r
3         2.0 (the "License"); you may not use this file except in compliance with\r
4         the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0\r
5         Unless required by applicable law or agreed to in writing, software distributed\r
6         under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES\r
7         OR CONDITIONS OF ANY KIND, either express or implied. See the License for\r
8         the specific language governing permissions and limitations under the License. -->\r
9 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"\r
10     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">\r
11     <modelVersion>4.0.0</modelVersion>\r
12 \r
13     <parent>\r
14         <groupId>org.openo.holmes.actions</groupId>\r
15         <artifactId>holmes-actions-parent</artifactId>\r
16         <version>1.1.0-SNAPSHOT</version>\r
17     </parent>\r
18 \r
19     <name>holmes-actions-service</name>\r
20     <packaging>jar</packaging>\r
21     <artifactId>holmes-actions</artifactId>\r
22     <dependencies>\r
23         <dependency>\r
24             <groupId>org.apache.geronimo.specs</groupId>\r
25             <artifactId>geronimo-jms_1.1_spec</artifactId>\r
26         </dependency>\r
27         <dependency>\r
28             <groupId>org.apache.activemq</groupId>\r
29             <artifactId>activemq-client</artifactId>\r
30         </dependency>\r
31         <dependency>\r
32             <groupId>org.openo.common-services.common-utilities</groupId>\r
33             <artifactId>baseservice-i18n</artifactId>\r
34         </dependency>\r
35         <dependency>\r
36             <groupId>org.antlr</groupId>\r
37             <artifactId>stringtemplate</artifactId>\r
38         </dependency>\r
39         <dependency>\r
40             <groupId>io.dropwizard</groupId>\r
41             <artifactId>dropwizard-core</artifactId>\r
42         </dependency>\r
43         <dependency>\r
44             <groupId>io.swagger</groupId>\r
45             <artifactId>swagger-jersey2-jaxrs</artifactId>\r
46         </dependency>\r
47         <dependency>\r
48             <groupId>org.projectlombok</groupId>\r
49             <artifactId>lombok</artifactId>\r
50         </dependency>\r
51         <dependency>\r
52             <groupId>mysql</groupId>\r
53             <artifactId>mysql-connector-java</artifactId>\r
54         </dependency>\r
55         <dependency>\r
56             <groupId>io.dropwizard</groupId>\r
57             <artifactId>dropwizard-jdbi</artifactId>\r
58         </dependency>\r
59         <dependency>\r
60             <groupId>org.quartz-scheduler</groupId>\r
61             <artifactId>quartz</artifactId>\r
62         </dependency>\r
63         <dependency>\r
64             <groupId>junit</groupId>\r
65             <artifactId>junit</artifactId>\r
66         </dependency>\r
67         <dependency>\r
68             <groupId>org.hamcrest</groupId>\r
69             <artifactId>hamcrest-core</artifactId>\r
70         </dependency>\r
71         <dependency>\r
72             <groupId>org.powermock</groupId>\r
73             <artifactId>powermock-module-junit4</artifactId>\r
74         </dependency>\r
75         <dependency>\r
76             <groupId>io.dropwizard</groupId>\r
77             <artifactId>dropwizard-jdbi</artifactId>\r
78         </dependency>\r
79 \r
80         <dependency>\r
81             <groupId>org.apache.poi</groupId>\r
82             <artifactId>poi</artifactId>\r
83             <version>3.10.1</version>\r
84         </dependency>\r
85         <dependency>\r
86             <groupId>org.jdom</groupId>\r
87             <artifactId>jdom</artifactId>\r
88         </dependency>\r
89         <dependency>\r
90             <groupId>org.openo.common-services.common-utilities</groupId>\r
91             <artifactId>dropwizard-ioc-container</artifactId>\r
92         </dependency>\r
93     </dependencies>\r
94     <build>\r
95         <resources>\r
96             <resource>\r
97                 <directory>src/main/java</directory>\r
98                 <includes>\r
99                     <include>**/*.properties</include>\r
100                     <include>**/*.json</include>\r
101                 </includes>\r
102             </resource>\r
103             <resource>\r
104                 <directory>src/main/resources</directory>\r
105             </resource>\r
106         </resources>\r
107         <plugins>\r
108             <plugin>\r
109                 <groupId>org.apache.maven.plugins</groupId>\r
110                 <artifactId>maven-compiler-plugin</artifactId>\r
111                 <version>3.3</version>\r
112                 <configuration>\r
113                     <source>1.8</source>\r
114                     <target>1.8</target>\r
115                 </configuration>\r
116             </plugin>\r
117         </plugins>\r
118     </build>\r
119 \r
120 </project>\r