Remove unneeded param type definition
[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.onap.so</groupId>
8     <artifactId>so</artifactId>
9     <version>1.2.0-SNAPSHOT</version>
10   </parent>
11
12   <artifactId>bpmn</artifactId>
13   <name>BPMN Subsystem</name>
14   <description>BPMN Subsystem for MSO</description>
15   <packaging>pom</packaging>
16
17   <properties>
18     <camunda.version>7.7.0</camunda.version>
19     <camunda.bpm.assert.version>1.2</camunda.bpm.assert.version>
20     <camunda.bpm.webapp.artifact>camunda-webapp-jboss-standalone</camunda.bpm.webapp.artifact>
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>MSORESTClient</module>
34     <module>MSOCommonBPMN</module>
35     <module>MSOInfrastructureBPMN</module>
36     <module>MSOCockpit</module>
37   </modules>
38
39   <!-- Define artifact versions for child modules -->
40   <dependencyManagement>
41     <dependencies>
42       <dependency>
43         <groupId>org.camunda.bpm</groupId>
44         <artifactId>camunda-bom</artifactId>
45         <version>${camunda.version}</version>
46         <scope>import</scope>
47         <type>pom</type>
48       </dependency>
49       <dependency>
50         <groupId>org.camunda.bpm.extension</groupId>
51         <artifactId>camunda-bpm-assert</artifactId>
52         <version>${camunda.bpm.assert.version}</version>
53       </dependency>
54       <dependency>
55         <groupId>com.h2database</groupId>
56         <artifactId>h2</artifactId>
57         <version>${h2.version}</version>
58       </dependency>
59       <dependency>
60         <groupId>org.codehaus.groovy</groupId>
61         <artifactId>groovy-all</artifactId>
62         <version>${groovy.version}</version>
63       </dependency>
64       <dependency>
65         <groupId>net.sf.saxon</groupId>
66         <artifactId>Saxon-HE</artifactId>
67         <version>${saxon.version}</version>
68       </dependency>
69       <dependency>
70         <groupId>xmlunit</groupId>
71         <artifactId>xmlunit</artifactId>
72         <version>${xmlunit.version}</version>
73       </dependency>
74       <dependency>
75         <groupId>javax.activation</groupId>
76         <artifactId>activation</artifactId>
77         <version>1.1.1</version>
78         <scope>compile</scope>
79       </dependency>
80       <dependency>
81         <groupId>org.springframework</groupId>
82         <artifactId>spring-beans</artifactId>
83         <version>3.2.4.RELEASE</version>
84       </dependency>
85     </dependencies>
86   </dependencyManagement>
87
88   <dependencies>
89     <dependency>
90       <groupId>org.apache.httpcomponents</groupId>
91       <artifactId>httpcore</artifactId>
92     </dependency>
93     <dependency>
94       <groupId>org.apache.httpcomponents</groupId>
95       <artifactId>httpclient</artifactId>
96     </dependency>
97   </dependencies>
98
99   <build>
100     <plugins>
101
102       <plugin>
103         <groupId>org.apache.maven.plugins</groupId>
104         <artifactId>maven-surefire-plugin</artifactId>
105         <version>2.19.1</version>
106         <configuration>
107           <testFailureIgnore>false</testFailureIgnore>
108           <argLine>${surefireArgLine} -Xss1m</argLine>
109           <forkCount>1</forkCount>
110           <reuseForks>true</reuseForks>
111         </configuration>
112       </plugin>
113
114     </plugins>
115   </build>
116 </project>