blob: 073db573fb5b9e464c6b39cf32af64ccbc33ee41 [file] [log] [blame]
xg353yb6b7bef2017-04-11 13:30:42 +02001<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
ChrisC025301d2017-01-31 11:40:03 +01003 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
Rob Daugherty8047b7c2017-08-01 11:56:58 -04006 <groupId>org.openecomp.so</groupId>
Rob Daugherty26419352017-08-04 15:55:54 -04007 <artifactId>so</artifactId>
ChrisC1ba1d192017-03-13 05:01:04 -07008 <version>1.1.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01009 </parent>
10
Rob Daugherty9de3ce02017-08-04 12:15:51 -040011 <groupId>org.openecomp.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +010012 <artifactId>bpmn</artifactId>
13 <name>BPMN Subsystem</name>
14 <description>BPMN Subsystem for MSO</description>
15 <packaging>pom</packaging>
xg353yb6b7bef2017-04-11 13:30:42 +020016
ChrisC025301d2017-01-31 11:40:03 +010017 <properties>
xg353yb6b7bef2017-04-11 13:30:42 +020018 <camunda.version>7.6.0</camunda.version>
ChrisC025301d2017-01-31 11:40:03 +010019 <camunda.bpm.assert.version>1.2</camunda.bpm.assert.version>
20 <h2.version>1.3.173</h2.version>
21 <groovy.version>2.4.7</groovy.version>
22 <saxon.version>9.5.1-8</saxon.version>
ChrisC025301d2017-01-31 11:40:03 +010023 <xmlunit.version>1.6</xmlunit.version>
xg353yb6b7bef2017-04-11 13:30:42 +020024
ChrisC025301d2017-01-31 11:40:03 +010025 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
26 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
xg353yb6b7bef2017-04-11 13:30:42 +020027
ChrisC025301d2017-01-31 11:40:03 +010028 </properties>
29
30 <modules>
31 <module>MSOCoreBPMN</module>
xg353yb6b7bef2017-04-11 13:30:42 +020032 <module>MSOMockServer</module>
ChrisC025301d2017-01-31 11:40:03 +010033 <module>MSORESTClient</module>
xg353yb6b7bef2017-04-11 13:30:42 +020034 <module>MSOCommonBPMN</module>
35 <module>MSOInfrastructureBPMN</module>
ChrisC025301d2017-01-31 11:40:03 +010036 <module>MSOURN-plugin</module>
37 <module>MSOCockpit</module>
xg353yb6b7bef2017-04-11 13:30:42 +020038 </modules>
39
ChrisC025301d2017-01-31 11:40:03 +010040 <!-- 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>
ChrisC025301d2017-01-31 11:40:03 +010071 <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>
xg353yb6b7bef2017-04-11 13:30:42 +020088
ChrisC025301d2017-01-31 11:40:03 +010089 <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>
xg353yb6b7bef2017-04-11 13:30:42 +020099
ChrisC025301d2017-01-31 11:40:03 +0100100 <build>
101 <plugins>
xg353yb6b7bef2017-04-11 13:30:42 +0200102
ChrisC025301d2017-01-31 11:40:03 +0100103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-surefire-plugin</artifactId>
106 <version>2.17</version>
107 <configuration>
xg353yb6b7bef2017-04-11 13:30:42 +0200108 <testFailureIgnore>false</testFailureIgnore>
ChrisC025301d2017-01-31 11:40:03 +0100109 <argLine>-Xss1m @{argLine}</argLine>
xg353yb6b7bef2017-04-11 13:30:42 +0200110 <properties>
111 <property>
112 <!-- disabling project default evosuite listener-->
113 <name>usedefaultlisteners</name>
114 <value>true</value>
115 </property>
116 </properties>
ChrisC025301d2017-01-31 11:40:03 +0100117 </configuration>
xg353yb6b7bef2017-04-11 13:30:42 +0200118
ChrisC025301d2017-01-31 11:40:03 +0100119<!-- <configuration>
120 <testFailureIgnore>true</testFailureIgnore>
121 <forkCount>1</forkCount>
122 <forkMode>once</forkMode>
123 </configuration> -->
124 </plugin>
125
126 </plugins>
127 <pluginManagement>
128 <plugins>
129 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
130 <plugin>
131 <groupId>org.eclipse.m2e</groupId>
132 <artifactId>lifecycle-mapping</artifactId>
133 <version>1.0.0</version>
134 <configuration>
135 <lifecycleMappingMetadata>
136 <pluginExecutions>
137 <pluginExecution>
138 <pluginExecutionFilter>
139 <groupId>org.jacoco</groupId>
140 <artifactId>
141 jacoco-maven-plugin
142 </artifactId>
143 <versionRange>
144 [0.7.1.201405082137,)
145 </versionRange>
146 <goals>
147 <goal>prepare-agent</goal>
148 </goals>
149 </pluginExecutionFilter>
150 <action>
151 <ignore></ignore>
152 </action>
153 </pluginExecution>
154 </pluginExecutions>
155 </lifecycleMappingMetadata>
156 </configuration>
157 </plugin>
xg353yb6b7bef2017-04-11 13:30:42 +0200158
ChrisC025301d2017-01-31 11:40:03 +0100159 </plugins>
160 </pluginManagement>
161 </build>
162</project>