Merge "Replaced with Diamond symbol"
[so.git] / bpmn / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <groupId>org.openecomp.so</groupId>
8     <artifactId>so</artifactId>
9     <version>1.1.0-SNAPSHOT</version>
10   </parent>
11
12   <groupId>org.openecomp.so</groupId>
13   <artifactId>bpmn</artifactId>
14   <name>BPMN Subsystem</name>
15   <description>BPMN Subsystem for MSO</description>
16   <packaging>pom</packaging>
17
18   <properties>
19     <camunda.version>7.7.0</camunda.version>
20     <camunda.bpm.assert.version>1.2</camunda.bpm.assert.version>
21     <h2.version>1.3.173</h2.version>
22     <groovy.version>2.4.7</groovy.version>
23     <saxon.version>9.5.1-8</saxon.version>
24     <xmlunit.version>1.6</xmlunit.version>
25
26     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
27     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
28
29   </properties>
30
31   <modules>
32     <module>MSOCoreBPMN</module>
33     <module>MSOMockServer</module>
34     <module>MSORESTClient</module>
35     <module>MSOCommonBPMN</module>
36     <module>MSOInfrastructureBPMN</module>
37     <module>MSOURN-plugin</module>
38     <module>MSOCockpit</module>
39   </modules>
40
41   <!-- Define artifact versions for child modules -->
42   <dependencyManagement>
43     <dependencies>
44       <dependency>
45         <groupId>org.camunda.bpm</groupId>
46         <artifactId>camunda-bom</artifactId>
47         <version>${camunda.version}</version>
48         <scope>import</scope>
49         <type>pom</type>
50       </dependency>
51       <dependency>
52         <groupId>org.camunda.bpm.extension</groupId>
53         <artifactId>camunda-bpm-assert</artifactId>
54         <version>${camunda.bpm.assert.version}</version>
55       </dependency>
56       <dependency>
57         <groupId>com.h2database</groupId>
58         <artifactId>h2</artifactId>
59         <version>${h2.version}</version>
60       </dependency>
61       <dependency>
62         <groupId>org.codehaus.groovy</groupId>
63         <artifactId>groovy-all</artifactId>
64         <version>${groovy.version}</version>
65       </dependency>
66       <dependency>
67         <groupId>net.sf.saxon</groupId>
68         <artifactId>Saxon-HE</artifactId>
69         <version>${saxon.version}</version>
70       </dependency>
71       <dependency>
72         <groupId>xmlunit</groupId>
73         <artifactId>xmlunit</artifactId>
74         <version>${xmlunit.version}</version>
75       </dependency>
76       <dependency>
77         <groupId>javax.activation</groupId>
78         <artifactId>activation</artifactId>
79         <version>1.1.1</version>
80         <scope>compile</scope>
81       </dependency>
82       <dependency>
83         <groupId>org.springframework</groupId>
84         <artifactId>spring-beans</artifactId>
85         <version>3.2.4.RELEASE</version>
86       </dependency>
87     </dependencies>
88   </dependencyManagement>
89
90   <dependencies>
91     <dependency>
92       <groupId>org.apache.httpcomponents</groupId>
93       <artifactId>httpcore</artifactId>
94     </dependency>
95     <dependency>
96       <groupId>org.apache.httpcomponents</groupId>
97       <artifactId>httpclient</artifactId>
98     </dependency>
99   </dependencies>
100
101   <build>
102     <plugins>
103
104       <plugin>
105         <groupId>org.apache.maven.plugins</groupId>
106         <artifactId>maven-surefire-plugin</artifactId>
107         <version>2.17</version>
108         <configuration>
109           <testFailureIgnore>false</testFailureIgnore>
110           <argLine>-Xss1m</argLine>
111           <forkCount>1</forkCount>
112           <forkMode>once</forkMode>
113           <properties>
114           </properties>
115         </configuration>
116       </plugin>
117
118     </plugins>
119   </build>
120 </project>