Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame^] | 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.onap.so</groupId>
|
| 7 | <artifactId>bpmn</artifactId>
|
| 8 | <version>1.2.0-SNAPSHOT</version>
|
| 9 | </parent>
|
| 10 |
|
| 11 | <groupId>org.onap.so</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 | <dependency>
|
| 20 | <groupId>org.camunda.bpm.webapp</groupId>
|
| 21 | <artifactId>camunda-webapp</artifactId>
|
| 22 | <classifier>classes</classifier>
|
| 23 | <version>${camunda.version}</version>
|
| 24 | <exclusions>
|
| 25 | <exclusion>
|
| 26 | <groupId>commons-fileupload</groupId>
|
| 27 | <artifactId>commons-fileupload</artifactId>
|
| 28 | </exclusion>
|
| 29 | </exclusions>
|
| 30 | </dependency>
|
| 31 | <dependency>
|
| 32 | <groupId>commons-fileupload</groupId>
|
| 33 | <artifactId>commons-fileupload</artifactId>
|
| 34 | <version>1.3.2</version>
|
| 35 | </dependency>
|
| 36 | <dependency>
|
| 37 | <groupId>javax.ws.rs</groupId>
|
| 38 | <artifactId>javax.ws.rs-api</artifactId>
|
| 39 | <version>2.0</version>
|
| 40 | </dependency>
|
| 41 | <!-- TODO Upate it to ee version -->
|
| 42 | <dependency>
|
| 43 | <groupId>org.camunda.bpm</groupId>
|
| 44 | <artifactId>camunda-engine</artifactId>
|
| 45 | <version>${camunda.version}</version>
|
| 46 | </dependency>
|
| 47 | <dependency>
|
| 48 | <groupId>com.h2database</groupId>
|
| 49 | <artifactId>h2</artifactId>
|
| 50 | <scope>test</scope>
|
| 51 | </dependency>
|
| 52 | <dependency>
|
| 53 | <groupId>javax.servlet</groupId>
|
| 54 | <artifactId>javax.servlet-api</artifactId>
|
| 55 | <version>3.0.1</version>
|
| 56 | <scope>provided</scope>
|
| 57 | </dependency>
|
| 58 | <dependency>
|
| 59 | <groupId>org.onap.so</groupId>
|
| 60 | <artifactId>common</artifactId>
|
| 61 | <version>${project.version}</version>
|
| 62 | <scope>compile</scope>
|
| 63 | </dependency>
|
| 64 | </dependencies>
|
| 65 | </project>
|