Cleanup project's name in Sonar
[vfc/nfvo/wfengine.git] / wfenginemgrservice / pom.xml
1 <?xml version="1.0"?>\r
2 <!-- Copyright 2016 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/xsd/maven-4.0.0.xsd">\r
11         <parent>\r
12                 <groupId>org.onap.oparent</groupId>\r
13                 <artifactId>oparent</artifactId>\r
14                 <version>1.0.0-SNAPSHOT</version>\r
15         </parent>\r
16 \r
17         <groupId>org.onap.vfc.nfvo.wfengine</groupId>\r
18         <modelVersion>4.0.0</modelVersion>\r
19         <artifactId>workflow-engine-mgr-service</artifactId>\r
20         <name>vfc-nfvo-wfengine-wfenginemgrservice</name>\r
21         <packaging>jar</packaging>\r
22 \r
23         <properties>\r
24                 <ant.version>1.9.6</ant.version>\r
25                 <apache-velocity.version>1.6.2</apache-velocity.version>\r
26                 <jgrapht.version>0.9.1</jgrapht.version>\r
27         </properties>\r
28 \r
29         <build>\r
30                 <plugins>\r
31                         <plugin>\r
32                                 <groupId>org.eclipse.m2e</groupId>\r
33                                 <artifactId>lifecycle-mapping</artifactId>\r
34                                 <version>1.0.0</version>\r
35                                 <configuration>\r
36                                         <lifecycleMappingMetadata>\r
37                                                 <pluginExecutions>\r
38                                                         <pluginExecution>\r
39                                                                 <pluginExecutionFilter>\r
40                                                                         <groupId>org.apache.maven.plugins</groupId>\r
41                                                                         <artifactId>maven-dependency-plugin</artifactId>\r
42                                                                         <versionRange>[2.0,)</versionRange>\r
43                                                                         <goals>\r
44                                                                                 <goal>copy-dependencies</goal>\r
45                                                                         </goals>\r
46                                                                 </pluginExecutionFilter>\r
47                                                                 <action>\r
48                                                                         <ignore />\r
49                                                                 </action>\r
50                                                         </pluginExecution>\r
51                                                 </pluginExecutions>\r
52                                         </lifecycleMappingMetadata>\r
53                                 </configuration>\r
54                         </plugin>\r
55                         <plugin>\r
56                                 <groupId>org.apache.maven.plugins</groupId>\r
57                                 <artifactId>maven-jar-plugin</artifactId>\r
58                                 <version>2.6</version>\r
59                                 <configuration>\r
60                                         <archive>\r
61                                                 <manifest>\r
62                                                         <addDefaultImplementationEntries>true</addDefaultImplementationEntries>\r
63                                                 </manifest>\r
64                                         </archive>\r
65                                 </configuration>\r
66                         </plugin>\r
67                         <plugin>\r
68                                 <groupId>org.apache.maven.plugins</groupId>\r
69                                 <artifactId>maven-compiler-plugin</artifactId>\r
70                                 <version>3.5.1</version>\r
71                                 <configuration>\r
72                                         <source>1.8</source>\r
73                                         <target>1.8</target>\r
74                                 </configuration>\r
75                         </plugin>\r
76                         <plugin>\r
77                                 <groupId>org.apache.maven.plugins</groupId>\r
78                                 <artifactId>maven-shade-plugin</artifactId>\r
79                                 <version>2.4</version>\r
80                                 <configuration>\r
81                                         <createDependencyReducedPom>false</createDependencyReducedPom>\r
82                                         <filters>\r
83                                                 <filter>\r
84                                                         <artifact>*:*</artifact>\r
85                                                         <excludes>\r
86                                                                 <exclude>META-INF/*.SF</exclude>\r
87                                                                 <exclude>META-INF/*.DSA</exclude>\r
88                                                                 <exclude>META-INF/*.RSA</exclude>\r
89                                                         </excludes>\r
90                                                 </filter>\r
91                                         </filters>\r
92                                 </configuration>\r
93                                 <executions>\r
94                                         <execution>\r
95                                                 <phase>package</phase>\r
96                                                 <goals>\r
97                                                         <goal>shade</goal>\r
98                                                 </goals>\r
99                                                 <configuration>\r
100                                                         <transformers>\r
101                                                                 <transformer\r
102                                                                         implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />\r
103                                                                 <transformer\r
104                                                                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">\r
105                                                                         <mainClass>com.onap.workflow.WorkflowApp</mainClass>\r
106                                                                 </transformer>\r
107                                                         </transformers>\r
108                                                 </configuration>\r
109                                         </execution>\r
110                                 </executions>\r
111                         </plugin>\r
112                         <plugin>\r
113                                 <groupId>org.apache.maven.plugins</groupId>\r
114                                 <artifactId>maven-dependency-plugin</artifactId>\r
115                                 <executions>\r
116                                         <execution>\r
117                                                 <id>copy-dependencies</id>\r
118                                                 <phase>package</phase>\r
119                                                 <goals>\r
120                                                         <goal>copy-dependencies</goal>\r
121                                                 </goals>\r
122                                                 <configuration>\r
123                                                         <artifactItems>\r
124                                                                 <artifactItem>\r
125                                                                         <groupId>io.dropwizard</groupId>\r
126                                                                         <artifactId>dropwizard-core</artifactId>\r
127                                                                         <version>0.8.0</version>\r
128                                                                         <overWrite>true</overWrite>\r
129                                                                 </artifactItem>\r
130                                                         </artifactItems>\r
131                                                 </configuration>\r
132                                         </execution>\r
133                                 </executions>\r
134                         </plugin>\r
135 \r
136                         <plugin>\r
137                                 <groupId>org.apache.maven.plugins</groupId>\r
138                                 <artifactId>maven-failsafe-plugin</artifactId>\r
139                                 <version>2.8</version>\r
140                         </plugin>\r
141                 </plugins>\r
142                 <pluginManagement>\r
143                         <plugins>\r
144                                 <!--This plugin's configuration is used to store Eclipse m2e settings \r
145                                         only. It has no influence on the Maven build itself. -->\r
146                                 <plugin>\r
147                                         <groupId>org.eclipse.m2e</groupId>\r
148                                         <artifactId>lifecycle-mapping</artifactId>\r
149                                         <version>1.0.0</version>\r
150                                         <configuration>\r
151                                                 <lifecycleMappingMetadata>\r
152                                                         <pluginExecutions>\r
153                                                                 <pluginExecution>\r
154                                                                         <pluginExecutionFilter>\r
155                                                                                 <groupId>\r
156                                                                                         org.apache.maven.plugins\r
157                                                                                 </groupId>\r
158                                                                                 <artifactId>\r
159                                                                                         maven-checkstyle-plugin\r
160                                                                                 </artifactId>\r
161                                                                                 <versionRange>\r
162                                                                                         [2.17,)\r
163                                                                                 </versionRange>\r
164                                                                                 <goals>\r
165                                                                                         <goal>check</goal>\r
166                                                                                 </goals>\r
167                                                                         </pluginExecutionFilter>\r
168                                                                         <action>\r
169                                                                                 <ignore></ignore>\r
170                                                                         </action>\r
171                                                                 </pluginExecution>\r
172                                                         </pluginExecutions>\r
173                                                 </lifecycleMappingMetadata>\r
174                                         </configuration>\r
175                                 </plugin>\r
176                         </plugins>\r
177                 </pluginManagement>\r
178         </build>\r
179         <dependencies>\r
180                 <dependency>\r
181                         <groupId>io.dropwizard</groupId>\r
182                         <artifactId>dropwizard-core</artifactId>\r
183                         <version>0.8.0</version>\r
184                 </dependency>\r
185                 <dependency>\r
186                         <groupId>io.dropwizard</groupId>\r
187                         <artifactId>dropwizard-assets</artifactId>\r
188                         <version>0.8.0</version>\r
189                 </dependency>\r
190                 <dependency>\r
191                         <groupId>io.dropwizard</groupId>\r
192                         <artifactId>dropwizard-hibernate</artifactId>\r
193                         <version>0.8.0</version>\r
194                 </dependency>\r
195                 <dependency>\r
196                         <groupId>io.dropwizard</groupId>\r
197                         <artifactId>dropwizard-migrations</artifactId>\r
198                         <version>0.8.0</version>\r
199                 </dependency>\r
200                 <dependency>\r
201                         <groupId>io.swagger</groupId>\r
202                         <artifactId>swagger-jersey2-jaxrs</artifactId>\r
203                         <version>1.5.3</version>\r
204                 </dependency>\r
205                 <dependency>\r
206                         <groupId>org.projectlombok</groupId>\r
207                         <artifactId>lombok</artifactId>\r
208                         <version>1.16.4</version>\r
209                 </dependency>\r
210                 <dependency>\r
211                         <groupId>org.glassfish.jersey.core</groupId>\r
212                         <artifactId>jersey-server</artifactId>\r
213                         <version>2.16</version>\r
214                 </dependency>\r
215                 <dependency>\r
216                         <groupId>org.glassfish.jersey.media</groupId>\r
217                         <artifactId>jersey-media-multipart</artifactId>\r
218                         <version>2.16</version>\r
219                 </dependency>\r
220                 <dependency>\r
221                         <groupId>org.glassfish.jersey.containers</groupId>\r
222                         <artifactId>jersey-container-servlet-core</artifactId>\r
223                         <version>2.16</version>\r
224                 </dependency>\r
225                 <dependency>\r
226                         <groupId>com.eclipsesource.jaxrs</groupId>\r
227                         <artifactId>consumer</artifactId>\r
228                         <version>5.0</version>\r
229                 </dependency>\r
230                 <dependency>\r
231                         <groupId>com.jcraft</groupId>\r
232                         <artifactId>jsch</artifactId>\r
233                         <version>0.1.53</version>\r
234                 </dependency>\r
235                 <dependency>\r
236                         <groupId>com.fasterxml.jackson.dataformat</groupId>\r
237                         <artifactId>jackson-dataformat-xml</artifactId>\r
238                         <version>2.5.1</version>\r
239                 </dependency>\r
240                 <dependency>\r
241                         <groupId>com.fasterxml.jackson.core</groupId>\r
242                         <artifactId>jackson-annotations</artifactId>\r
243                         <version>2.8.0</version>\r
244                 </dependency>\r
245                 <dependency>\r
246                         <groupId>com.google.code.gson</groupId>\r
247                         <artifactId>gson</artifactId>\r
248                         <version>2.2.4</version>\r
249                 </dependency>\r
250                 <dependency>\r
251                         <groupId>dom4j</groupId>\r
252                         <artifactId>dom4j</artifactId>\r
253                         <version>1.6.1</version>\r
254                 </dependency>\r
255                 <dependency>\r
256                         <groupId>io.dropwizard</groupId>\r
257                         <artifactId>dropwizard-jdbi</artifactId>\r
258                         <version>0.8.0</version>\r
259                 </dependency>\r
260                 <dependency>\r
261                         <groupId>mysql</groupId>\r
262                         <artifactId>mysql-connector-java</artifactId>\r
263                         <version>5.1.40</version>\r
264                 </dependency>\r
265                 <dependency>\r
266                         <groupId>commons-io</groupId>\r
267                         <artifactId>commons-io</artifactId>\r
268                         <version>2.4</version>\r
269                 </dependency>\r
270                 <dependency>\r
271                         <groupId>org.apache.httpcomponents</groupId>\r
272                         <artifactId>httpcore</artifactId>\r
273                         <version>4.4.1</version>\r
274                 </dependency>\r
275                 <dependency>\r
276                         <groupId>org.apache.httpcomponents</groupId>\r
277                         <artifactId>httpmime</artifactId>\r
278                         <version>4.4.1</version>\r
279                 </dependency>\r
280                 <dependency>\r
281                         <groupId>junit</groupId>\r
282                         <artifactId>junit</artifactId>\r
283                         <version>4.12</version>\r
284                 </dependency>\r
285                 <dependency>\r
286                         <groupId>org.powermock</groupId>\r
287                         <artifactId>powermock-module-junit4</artifactId>\r
288                         <version>1.6.1</version>\r
289                 </dependency>\r
290                 <dependency>\r
291                         <groupId>org.powermock</groupId>\r
292                         <artifactId>powermock-api-mockito</artifactId>\r
293                         <version>1.6.1</version>\r
294                 </dependency>\r
295                 <dependency>\r
296                         <groupId>org.mockito</groupId>\r
297                         <artifactId>mockito-all</artifactId>\r
298                         <version>1.9.5</version>\r
299                 </dependency>\r
300                 <dependency>\r
301                         <groupId>org.apache.ant</groupId>\r
302                         <artifactId>ant</artifactId>\r
303                         <version>1.9.6</version>\r
304                 </dependency>\r
305                 <dependency>\r
306                         <groupId>org.slf4j</groupId>\r
307                         <artifactId>slf4j-api</artifactId>\r
308                         <version>1.7.12</version>\r
309                 </dependency>\r
310         </dependencies>\r
311 </project>\r