blob: 165c52881217ceccbfedff25aa92b5b55ef24583 [file] [log] [blame]
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07001<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 <parent>
4 <groupId>org.openecomp.mso</groupId>
5 <artifactId>bpmn</artifactId>
ChrisC1ba1d192017-03-13 05:01:04 -07006 <version>1.1.0-SNAPSHOT</version>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07007 </parent>
8
9 <modelVersion>4.0.0</modelVersion>
10 <groupId>org.openecomp.mso</groupId>
11 <artifactId>MSOCockpit</artifactId>
12 <packaging>pom</packaging>
13 <name>MSOCockpit</name>
14 <description>Builds the Camunda cockpit webapp for MSO</description>
15
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-assembly-plugin</artifactId>
21 <executions>
22 <execution>
23 <configuration>
24 <descriptors>
25 <descriptor>src/main/assembly/cockpit-build.xml</descriptor>
26 </descriptors>
27 <appendAssemblyId>false</appendAssemblyId>
28 </configuration>
29 <id>cockpit-build</id>
30 <phase>package</phase>
31 <goals>
32 <goal>single</goal>
33 </goals>
34 </execution>
35 </executions>
36 </plugin>
37 </plugins>
38 </build>
39
40 <dependencies>
41
42 <dependency>
43 <groupId>org.camunda.bpm.webapp</groupId>
44 <artifactId>camunda-webapp-jboss-standalone</artifactId>
45 <version>${camunda.version}</version>
46 <type>war</type>
47 </dependency>
48
49 <dependency>
50 <groupId>org.openecomp.mso</groupId>
51 <artifactId>common</artifactId>
52 <version>${project.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.openecomp.mso</groupId>
56 <artifactId>cockpit-urnmap-plugin</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.openecomp.mso</groupId>
61 <artifactId>MSOCoreBPMN</artifactId>
62 <version>${project.version}</version>
63 </dependency>
64 <dependency>
65 <groupId>org.evosuite</groupId>
66 <artifactId>evosuite-standalone-runtime</artifactId>
67 <version>${evosuiteVersion}</version>
68 <scope>test</scope>
69 </dependency>
70 </dependencies>
71
72</project>