blob: 2989a1892c2d56f8a663e5acb6abb2d15949e7cf [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>
Arthur Martella22e015f2018-02-22 14:24:40 -05007 <groupId>org.onap.so</groupId>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +02008 <artifactId>so</artifactId>
Jessica Wagantall777f6372017-11-20 11:10:28 -08009 <version>1.2.0-SNAPSHOT</version>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020010 </parent>
ChrisC025301d2017-01-31 11:40:03 +010011
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020012 <artifactId>bpmn</artifactId>
13 <name>BPMN Subsystem</name>
14 <description>BPMN Subsystem for MSO</description>
15 <packaging>pom</packaging>
ChrisC025301d2017-01-31 11:40:03 +010016
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020017 <properties>
Rob Daugherty38f72072018-03-14 02:07:32 -040018 <camunda.version>7.8.0</camunda.version>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020019 <camunda.bpm.assert.version>1.2</camunda.bpm.assert.version>
Rob Daughertya10e3582017-10-12 12:47:20 -040020 <camunda.bpm.webapp.artifact>camunda-webapp-jboss-standalone</camunda.bpm.webapp.artifact>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020021 <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>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020033 <module>MSORESTClient</module>
34 <module>MSOCommonBPMN</module>
35 <module>MSOInfrastructureBPMN</module>
Rob Daugherty38f72072018-03-14 02:07:32 -040036 <module>MSOURN-plugin</module>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020037 <module>MSOCockpit</module>
xg353yb6b7bef2017-04-11 13:30:42 +020038 </modules>
ChrisC025301d2017-01-31 11:40:03 +010039
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020040 <!-- Define artifact versions for child modules -->
41 <dependencyManagement>
42 <dependencies>
43 <dependency>
44 <groupId>org.camunda.bpm</groupId>
45 <artifactId>camunda-bom</artifactId>
46 <version>${camunda.version}</version>
47 <scope>import</scope>
48 <type>pom</type>
49 </dependency>
50 <dependency>
51 <groupId>org.camunda.bpm.extension</groupId>
52 <artifactId>camunda-bpm-assert</artifactId>
53 <version>${camunda.bpm.assert.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>com.h2database</groupId>
57 <artifactId>h2</artifactId>
58 <version>${h2.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.codehaus.groovy</groupId>
62 <artifactId>groovy-all</artifactId>
63 <version>${groovy.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>net.sf.saxon</groupId>
67 <artifactId>Saxon-HE</artifactId>
68 <version>${saxon.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>xmlunit</groupId>
72 <artifactId>xmlunit</artifactId>
73 <version>${xmlunit.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>javax.activation</groupId>
77 <artifactId>activation</artifactId>
78 <version>1.1.1</version>
79 <scope>compile</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.springframework</groupId>
83 <artifactId>spring-beans</artifactId>
84 <version>3.2.4.RELEASE</version>
85 </dependency>
86 </dependencies>
87 </dependencyManagement>
88
89 <dependencies>
90 <dependency>
91 <groupId>org.apache.httpcomponents</groupId>
92 <artifactId>httpcore</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.httpcomponents</groupId>
96 <artifactId>httpclient</artifactId>
97 </dependency>
98 </dependencies>
99
100 <build>
101 <plugins>
102
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-surefire-plugin</artifactId>
Rob Daughertyd53a72c2017-10-08 18:03:16 -0400106 <version>2.19.1</version>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +0200107 <configuration>
108 <testFailureIgnore>false</testFailureIgnore>
Rob Daughertyd53a72c2017-10-08 18:03:16 -0400109 <argLine>${surefireArgLine} -Xss1m</argLine>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +0200110 <forkCount>1</forkCount>
Rob Daughertybca68232017-10-10 10:30:10 -0400111 <reuseForks>true</reuseForks>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +0200112 </configuration>
113 </plugin>
114
115 </plugins>
116 </build>
ChrisC025301d2017-01-31 11:40:03 +0100117</project>