Initial OpenECOMP MSO commit
[so.git] / bpmn / MSOCockpit / pom.xml
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         <parent>
4                 <groupId>org.openecomp.mso</groupId>
5                 <artifactId>bpmn</artifactId>
6                 <version>0.0.4-SNAPSHOT</version>
7         </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>com.att.camunda.bpm.cockpit.plugin</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         </dependencies>
65         
66 </project>