blob: 0ff03cf08f613272f188a3684b0a43564600aab6 [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>
Arthur Martella22e015f2018-02-22 14:24:40 -05004 <groupId>org.onap.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07005 <artifactId>bpmn</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08006 <version>1.2.0-SNAPSHOT</version>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -07007 </parent>
8
9 <modelVersion>4.0.0</modelVersion>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070010 <artifactId>MSOCockpit</artifactId>
11 <packaging>pom</packaging>
12 <name>MSOCockpit</name>
13 <description>Builds the Camunda cockpit webapp for MSO</description>
14
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-assembly-plugin</artifactId>
20 <executions>
21 <execution>
22 <configuration>
23 <descriptors>
24 <descriptor>src/main/assembly/cockpit-build.xml</descriptor>
25 </descriptors>
26 <appendAssemblyId>false</appendAssemblyId>
27 </configuration>
28 <id>cockpit-build</id>
29 <phase>package</phase>
30 <goals>
31 <goal>single</goal>
32 </goals>
33 </execution>
34 </executions>
35 </plugin>
36 </plugins>
37 </build>
38
39 <dependencies>
40
41 <dependency>
42 <groupId>org.camunda.bpm.webapp</groupId>
Rob Daughertya10e3582017-10-12 12:47:20 -040043 <artifactId>${camunda.bpm.webapp.artifact}</artifactId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070044 <version>${camunda.version}</version>
45 <type>war</type>
46 </dependency>
47
48 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050049 <groupId>org.onap.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070050 <artifactId>common</artifactId>
51 <version>${project.version}</version>
52 </dependency>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070053 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050054 <groupId>org.onap.so</groupId>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070055 <artifactId>MSOCoreBPMN</artifactId>
56 <version>${project.version}</version>
57 </dependency>
Determe, Sebastien (sd378r)94ee9252017-05-02 03:53:18 -070058 </dependencies>
59
60</project>