ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [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> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 4 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 5 | <parent> |
| 6 | <groupId>org.openecomp.mso</groupId> |
| 7 | <artifactId>bpmn</artifactId> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 8 | <version>1.1.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 9 | </parent> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 10 | |
JulienBe | ebc6a7e | 2017-02-06 05:09:37 -0800 | [diff] [blame] | 11 | <groupId>org.openecomp.mso</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 12 | <artifactId>cockpit-urnmap-plugin</artifactId> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 13 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 14 | <packaging>jar</packaging> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame^] | 15 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |