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