blob: 4193ba1287410a83c3ac7ac3bc715c510b0fc960 [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)c0247ec2019-04-11 10:34:45 -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)c0247ec2019-04-11 10:34:45 -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>
seshukmadbd1c42020-08-03 19:23:51 +05309 <version>1.7.1-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040010 </parent>
ChrisC025301d2017-01-31 11:40:03 +010011
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -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)c0247ec2019-04-11 10:34:45 -040017 <properties>
18 <camunda.version>7.10.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>
Benjamin, Max9868f172020-05-18 16:37:51 -040022 <groovy.version>2.5.3</groovy.version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040023 <saxon.version>9.5.1-8</saxon.version>
24 <xmlunit.version>2.4.0</xmlunit.version>
25 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Smokowski, Stevene29b04b2019-06-14 09:12:10 -040027 <sdnc.northbound.version>1.5.2</sdnc.northbound.version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040028 </properties>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020029
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040030 <modules>
31 <module>MSOCoreBPMN</module>
Benjamin, Max (mb388a)5442c272019-02-14 19:52:29 -050032
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040033 <module>MSOCommonBPMN</module>
34 <module>so-bpmn-infrastructure-common</module>
35 <module>so-bpmn-tasks</module>
36 <module>so-bpmn-building-blocks</module>
37 <module>so-bpmn-infrastructure-flows</module>
38 <module>mso-infrastructure-bpmn</module>
39 </modules>
ChrisC025301d2017-01-31 11:40:03 +010040
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040041 <!-- Define artifact versions for child modules -->
42 <dependencyManagement>
43 <dependencies>
44 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040045 <groupId>net.sf.saxon</groupId>
46 <artifactId>Saxon-HE</artifactId>
47 <version>${saxon.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.xmlunit</groupId>
51 <artifactId>xmlunit-core</artifactId>
52 <version>${xmlunit.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>javax.activation</groupId>
56 <artifactId>activation</artifactId>
57 <version>1.1.1</version>
58 <scope>compile</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.assertj</groupId>
62 <artifactId>assertj-core</artifactId>
63 <version>3.11.1</version>
64 <scope>test</scope>
65 </dependency>
66 <dependency>
67 <groupId>org.camunda.bpm.extension.mockito</groupId>
68 <artifactId>camunda-bpm-mockito</artifactId>
69 <version>4.0.0</version>
70 <scope>test</scope>
71 </dependency>
72 </dependencies>
73 </dependencyManagement>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020074
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040075 <dependencies>
76 <dependency>
77 <groupId>org.apache.httpcomponents</groupId>
78 <artifactId>httpcore</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>org.apache.httpcomponents</groupId>
82 <artifactId>httpclient</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.springframework.boot</groupId>
86 <artifactId>spring-boot-starter-data-jpa</artifactId>
87 <optional>true</optional>
88 </dependency>
Benjamin, Max4f774ee2020-04-28 15:13:12 -040089 <dependency>
90 <groupId>org.onap.so</groupId>
91 <artifactId>aai-client</artifactId>
92 <version>${project.version}</version>
93 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040094 </dependencies>
Determe, Sebastien (sd378r)d859da92017-09-29 12:10:40 +020095
ChrisC025301d2017-01-31 11:40:03 +010096</project>