Add module holms-actions 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</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.openo.common-services.common-utilities</groupId>-->\r
25             <!--<artifactId>baseservice-i18n</artifactId>-->\r
26         <!--</dependency>-->\r
27         <dependency>\r
28             <groupId>org.antlr</groupId>\r
29             <artifactId>stringtemplate</artifactId>\r
30         </dependency>\r
31         <dependency>\r
32             <groupId>io.dropwizard</groupId>\r
33             <artifactId>dropwizard-core</artifactId>\r
34         </dependency>\r
35         <dependency>\r
36             <groupId>io.swagger</groupId>\r
37             <artifactId>swagger-jersey2-jaxrs</artifactId>\r
38         </dependency>\r
39         <dependency>\r
40             <groupId>org.projectlombok</groupId>\r
41             <artifactId>lombok</artifactId>\r
42         </dependency>\r
43         <dependency>\r
44             <groupId>mysql</groupId>\r
45             <artifactId>mysql-connector-java</artifactId>\r
46         </dependency>\r
47         <dependency>\r
48             <groupId>io.dropwizard</groupId>\r
49             <artifactId>dropwizard-jdbi</artifactId>\r
50         </dependency>\r
51         <dependency>\r
52             <groupId>org.quartz-scheduler</groupId>\r
53             <artifactId>quartz</artifactId>\r
54         </dependency>\r
55         <dependency>\r
56             <groupId>junit</groupId>\r
57             <artifactId>junit</artifactId>\r
58         </dependency>\r
59         <dependency>\r
60             <groupId>org.hamcrest</groupId>\r
61             <artifactId>hamcrest-core</artifactId>\r
62         </dependency>\r
63         <dependency>\r
64             <groupId>org.powermock</groupId>\r
65             <artifactId>powermock-module-junit4</artifactId>\r
66         </dependency>\r
67         <dependency>\r
68             <groupId>io.dropwizard</groupId>\r
69             <artifactId>dropwizard-jdbi</artifactId>\r
70         </dependency>\r
71 \r
72         <dependency>\r
73             <groupId>org.apache.poi</groupId>\r
74             <artifactId>poi</artifactId>\r
75             <version>3.10.1</version>\r
76         </dependency>\r
77         <dependency>\r
78             <groupId>org.jdom</groupId>\r
79             <artifactId>jdom</artifactId>\r
80         </dependency>\r
81         <dependency>\r
82             <groupId>org.openo.common-services.common-utilities</groupId>\r
83             <artifactId>dropwizard-ioc-container</artifactId>\r
84         </dependency>\r
85     </dependencies>\r
86     <build>\r
87         <resources>\r
88             <resource>\r
89                 <directory>src/main/java</directory>\r
90                 <includes>\r
91                     <include>**/*.properties</include>\r
92                     <include>**/*.json</include>\r
93                 </includes>\r
94             </resource>\r
95             <resource>\r
96                 <directory>src/main/resources</directory>\r
97             </resource>\r
98         </resources>\r
99         <plugins>\r
100             <plugin>\r
101                 <groupId>org.apache.maven.plugins</groupId>\r
102                 <artifactId>maven-compiler-plugin</artifactId>\r
103                 <version>3.3</version>\r
104                 <configuration>\r
105                     <source>1.8</source>\r
106                     <target>1.8</target>\r
107                 </configuration>\r
108             </plugin>\r
109         </plugins>\r
110     </build>\r
111 \r
112 </project>\r