blob: b878467e72c79626f8d6eba7ea890d1ae4b9ba8a [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?xml version="1.0" encoding="UTF-8"?>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +02002<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>
ChrisC025301d2017-01-31 11:40:03 +01005
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +02006 <parent>
7 <groupId>org.openecomp.so</groupId>
8 <artifactId>so</artifactId>
9 <version>1.1.0-SNAPSHOT</version>
10 </parent>
ChrisC025301d2017-01-31 11:40:03 +010011
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020012 <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>
ChrisC025301d2017-01-31 11:40:03 +010017
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020018 <properties>
19 <camunda.version>7.7.0</camunda.version>
20 <camunda.bpm.assert.version>1.2</camunda.bpm.assert.version>
Rob Daughertya10e3582017-10-12 12:47:20 -040021 <camunda.bpm.webapp.artifact>camunda-webapp-jboss-standalone</camunda.bpm.webapp.artifact>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020022 <h2.version>1.3.173</h2.version>
23 <groovy.version>2.4.7</groovy.version>
24 <saxon.version>9.5.1-8</saxon.version>
25 <xmlunit.version>1.6</xmlunit.version>
26
27 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
28 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
29
30 </properties>
31
32 <modules>
33 <module>MSOCoreBPMN</module>
seshukm2c4e5102017-10-10 16:32:17 +053034 <!--<module>MSOMockServer</module> -->
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020035 <module>MSORESTClient</module>
36 <module>MSOCommonBPMN</module>
37 <module>MSOInfrastructureBPMN</module>
38 <module>MSOURN-plugin</module>
39 <module>MSOCockpit</module>
xg353yb6b7bef2017-04-11 13:30:42 +020040 </modules>
ChrisC025301d2017-01-31 11:40:03 +010041
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020042 <!-- Define artifact versions for child modules -->
43 <dependencyManagement>
44 <dependencies>
45 <dependency>
46 <groupId>org.camunda.bpm</groupId>
47 <artifactId>camunda-bom</artifactId>
48 <version>${camunda.version}</version>
49 <scope>import</scope>
50 <type>pom</type>
51 </dependency>
52 <dependency>
53 <groupId>org.camunda.bpm.extension</groupId>
54 <artifactId>camunda-bpm-assert</artifactId>
55 <version>${camunda.bpm.assert.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>com.h2database</groupId>
59 <artifactId>h2</artifactId>
60 <version>${h2.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>org.codehaus.groovy</groupId>
64 <artifactId>groovy-all</artifactId>
65 <version>${groovy.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>net.sf.saxon</groupId>
69 <artifactId>Saxon-HE</artifactId>
70 <version>${saxon.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>xmlunit</groupId>
74 <artifactId>xmlunit</artifactId>
75 <version>${xmlunit.version}</version>
76 </dependency>
77 <dependency>
78 <groupId>javax.activation</groupId>
79 <artifactId>activation</artifactId>
80 <version>1.1.1</version>
81 <scope>compile</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.springframework</groupId>
85 <artifactId>spring-beans</artifactId>
86 <version>3.2.4.RELEASE</version>
87 </dependency>
88 </dependencies>
89 </dependencyManagement>
90
91 <dependencies>
92 <dependency>
93 <groupId>org.apache.httpcomponents</groupId>
94 <artifactId>httpcore</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.apache.httpcomponents</groupId>
98 <artifactId>httpclient</artifactId>
99 </dependency>
100 </dependencies>
101
102 <build>
103 <plugins>
104
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-surefire-plugin</artifactId>
Rob Daughertyd53a72c2017-10-08 18:03:16 -0400108 <version>2.19.1</version>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +0200109 <configuration>
110 <testFailureIgnore>false</testFailureIgnore>
Rob Daughertyd53a72c2017-10-08 18:03:16 -0400111 <argLine>${surefireArgLine} -Xss1m</argLine>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +0200112 <forkCount>1</forkCount>
Rob Daughertybca68232017-10-10 10:30:10 -0400113 <reuseForks>true</reuseForks>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +0200114 </configuration>
115 </plugin>
116
117 </plugins>
118 </build>
ChrisC025301d2017-01-31 11:40:03 +0100119</project>