xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <parent> |
Rob Daugherty | 8047b7c | 2017-08-01 11:56:58 -0400 | [diff] [blame] | 6 | <groupId>org.openecomp.so</groupId> |
Rob Daugherty | 2641935 | 2017-08-04 15:55:54 -0400 | [diff] [blame] | 7 | <artifactId>so</artifactId> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 8 | <version>1.1.0-SNAPSHOT</version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 9 | </parent> |
| 10 | |
Rob Daugherty | 9de3ce0 | 2017-08-04 12:15:51 -0400 | [diff] [blame] | 11 | <groupId>org.openecomp.so</groupId> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 12 | <artifactId>bpmn</artifactId> |
| 13 | <name>BPMN Subsystem</name> |
| 14 | <description>BPMN Subsystem for MSO</description> |
| 15 | <packaging>pom</packaging> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 16 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 17 | <properties> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 18 | <camunda.version>7.6.0</camunda.version> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 19 | <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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 23 | <xmlunit.version>1.6</xmlunit.version> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 24 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 25 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 26 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 27 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 28 | </properties> |
| 29 | |
| 30 | <modules> |
| 31 | <module>MSOCoreBPMN</module> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 32 | <module>MSOMockServer</module> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 33 | <module>MSORESTClient</module> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 34 | <module>MSOCommonBPMN</module> |
| 35 | <module>MSOInfrastructureBPMN</module> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 36 | <module>MSOURN-plugin</module> |
| 37 | <module>MSOCockpit</module> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 38 | </modules> |
| 39 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 40 | <!-- 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> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 88 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 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> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 99 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 100 | <build> |
| 101 | <plugins> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 102 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 103 | <plugin> |
| 104 | <groupId>org.apache.maven.plugins</groupId> |
| 105 | <artifactId>maven-surefire-plugin</artifactId> |
| 106 | <version>2.17</version> |
| 107 | <configuration> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 108 | <testFailureIgnore>false</testFailureIgnore> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 109 | <argLine>-Xss1m @{argLine}</argLine> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 110 | <properties> |
| 111 | <property> |
| 112 | <!-- disabling project default evosuite listener--> |
| 113 | <name>usedefaultlisteners</name> |
| 114 | <value>true</value> |
| 115 | </property> |
| 116 | </properties> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 117 | </configuration> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 118 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 119 | <!-- <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> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 158 | |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 159 | </plugins> |
| 160 | </pluginManagement> |
| 161 | </build> |
| 162 | </project> |