Merge "vfc adapter authentication bug fix"
[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.4.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.9.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.8</groovy.version>
23                 <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>
27         </properties>
28
29         <modules>
30                 <module>MSOCoreBPMN</module>
31                 
32                 <module>MSOCommonBPMN</module>
33                 <module>so-bpmn-infrastructure-common</module>
34                 <module>so-bpmn-tasks</module>
35                 <module>so-bpmn-building-blocks</module>
36                 <module>so-bpmn-infrastructure-flows</module>
37                 <module>mso-infrastructure-bpmn</module>
38         </modules>
39
40         <!-- Define artifact versions for child modules -->
41         <dependencyManagement>
42                 <dependencies>
43                         <dependency>
44                                 <groupId>org.codehaus.groovy</groupId>
45                                 <artifactId>groovy-all</artifactId>
46                                 <version>${groovy.version}</version>
47                         </dependency>
48                         <dependency>
49                                 <groupId>net.sf.saxon</groupId>
50                                 <artifactId>Saxon-HE</artifactId>
51                                 <version>${saxon.version}</version>
52                         </dependency>
53                         <dependency>
54                                 <groupId>org.xmlunit</groupId>
55                                 <artifactId>xmlunit-core</artifactId>
56                                 <version>${xmlunit.version}</version>
57                         </dependency>
58                         <dependency>
59                                 <groupId>javax.activation</groupId>
60                                 <artifactId>activation</artifactId>
61                                 <version>1.1.1</version>
62                                 <scope>compile</scope>
63                         </dependency>
64                         <dependency>
65                                 <groupId>org.assertj</groupId>
66                                 <artifactId>assertj-core</artifactId>
67                                 <version>3.11.1</version>
68                                 <scope>test</scope>
69                         </dependency>
70                 </dependencies>
71         </dependencyManagement>
72
73         <dependencies>
74                 <dependency>
75                         <groupId>org.apache.httpcomponents</groupId>
76                         <artifactId>httpcore</artifactId>
77                 </dependency>
78                 <dependency>
79                         <groupId>org.apache.httpcomponents</groupId>
80                         <artifactId>httpclient</artifactId>
81                 </dependency>
82                 <dependency>
83                         <groupId>org.springframework.boot</groupId>
84                         <artifactId>spring-boot-starter-data-jpa</artifactId>
85                         <optional>true</optional>
86                 </dependency>
87         </dependencies>
88
89 </project>