Initial OpenECOMP MSO commit
[so.git] / bpmn / MSOURN-plugin / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         
5         <parent>
6                 <groupId>org.openecomp.mso</groupId>
7                 <artifactId>bpmn</artifactId>
8                 <version>0.0.4-SNAPSHOT</version>
9         </parent>
10         
11         <groupId>com.att.camunda.bpm.cockpit.plugin</groupId>
12         <artifactId>cockpit-urnmap-plugin</artifactId>
13         
14         <packaging>jar</packaging>
15         
16         <name>MSO URN Mapping Cockpit Plugin</name>
17
18         <dependencies>
19                 <!--  TODO Upate it to ee and proper version-->
20                 <dependency>
21                         <groupId>org.camunda.bpm.webapp</groupId>
22                         <artifactId>camunda-webapp-core</artifactId>
23                         <version>${camunda.version}</version>
24                         <!-- exclusion to use latest commons-fileupload -->
25                         <exclusions>
26                                 <exclusion>
27                                         <groupId>commons-fileupload</groupId>
28                                         <artifactId>commons-fileupload</artifactId>
29                                 </exclusion>
30                         </exclusions>
31                 </dependency>
32                 <!-- latest commons-fileupload -->
33                 <dependency>
34                         <groupId>commons-fileupload</groupId>
35                         <artifactId>commons-fileupload</artifactId>
36                         <version>1.3.2</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>javax.ws.rs</groupId>
40                         <artifactId>javax.ws.rs-api</artifactId>
41                         <version>2.0</version>
42                 </dependency>
43                 <!--  TODO Upate it to ee version -->
44                 <dependency>
45                         <groupId>org.camunda.bpm</groupId>
46                         <artifactId>camunda-engine</artifactId>
47                         <version>${camunda.version}</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>com.h2database</groupId>
51                         <artifactId>h2</artifactId>
52                         <scope>test</scope>
53                 </dependency>
54                 <dependency>
55                         <groupId>junit</groupId>
56                         <artifactId>junit</artifactId>
57                         <scope>test</scope>
58                 </dependency>
59                 <dependency>
60                         <groupId>javax.servlet</groupId>
61                         <artifactId>javax.servlet-api</artifactId>
62                         <version>3.0.1</version>
63                         <scope>provided</scope>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.openecomp.mso</groupId>
67                         <artifactId>common</artifactId>
68                         <version>${project.version}</version>
69                         <scope>compile</scope>
70                 </dependency>
71         </dependencies>
72 </project>