blob: 5ad57a609658d586f7c3b22c74fd642b86fb8918 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<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>
ChrisC1ba1d192017-03-13 05:01:04 -07004
ChrisC025301d2017-01-31 11:40:03 +01005 <parent>
6 <groupId>org.openecomp.mso</groupId>
7 <artifactId>bpmn</artifactId>
ChrisC1ba1d192017-03-13 05:01:04 -07008 <version>1.1.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01009 </parent>
ChrisC1ba1d192017-03-13 05:01:04 -070010
JulienBeebc6a7e2017-02-06 05:09:37 -080011 <groupId>org.openecomp.mso</groupId>
ChrisC025301d2017-01-31 11:40:03 +010012 <artifactId>cockpit-urnmap-plugin</artifactId>
ChrisC1ba1d192017-03-13 05:01:04 -070013
ChrisC025301d2017-01-31 11:40:03 +010014 <packaging>jar</packaging>
ChrisC1ba1d192017-03-13 05:01:04 -070015
ChrisC025301d2017-01-31 11:40:03 +010016 <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>