blob: 9f004afe89e47326c212a573a1de4bf532539de5 [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"
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04003 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
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04006 <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>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04009 <version>1.3.0-SNAPSHOT</version>
10 </parent>
ChrisC025301d2017-01-31 11:40:03 +010011
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040012 <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
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040017 <properties>
18 <camunda.version>7.8.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.4.196</h2.version>
22 <groovy.version>2.4.7</groovy.version>
23 <saxon.version>9.5.1-8</saxon.version>
24 <xmlunit.version>2.4.0</xmlunit.version>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020025
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040026 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
27 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020028
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040029 </properties>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020030
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040031 <modules>
32 <module>MSOCoreBPMN</module>
33 <module>MSORESTClient</module>
34 <module>MSOCommonBPMN</module>
35 <module>so-bpmn-infrastructure-common</module>
36 <module>so-bpmn-tasks</module>
37 <module>so-bpmn-building-blocks</module>
38 <module>so-bpmn-infrastructure-flows</module>
39 <module>mso-infrastructure-bpmn</module>
40 </modules>
ChrisC025301d2017-01-31 11:40:03 +010041
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040042 <!-- Define artifact versions for child modules -->
43 <dependencyManagement>
44 <dependencies>
45 <dependency>
46 <groupId>com.h2database</groupId>
47 <artifactId>h2</artifactId>
48 <version>${h2.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.codehaus.groovy</groupId>
52 <artifactId>groovy-all</artifactId>
53 <version>${groovy.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>net.sf.saxon</groupId>
57 <artifactId>Saxon-HE</artifactId>
58 <version>${saxon.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.xmlunit</groupId>
62 <artifactId>xmlunit-core</artifactId>
63 <version>${xmlunit.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>javax.activation</groupId>
67 <artifactId>activation</artifactId>
68 <version>1.1.1</version>
69 <scope>compile</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.springframework</groupId>
73 <artifactId>spring-beans</artifactId>
74 <version>4.3.12.RELEASE</version>
75 </dependency>
76 </dependencies>
77 </dependencyManagement>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020078
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040079 <dependencies>
80 <dependency>
81 <groupId>commons-beanutils</groupId>
82 <artifactId>commons-beanutils</artifactId>
83 <version>1.9.3</version>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.httpcomponents</groupId>
87 <artifactId>httpcore</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.apache.httpcomponents</groupId>
91 <artifactId>httpclient</artifactId>
92 </dependency>
93 </dependencies>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020094
ChrisC025301d2017-01-31 11:40:03 +010095</project>