diff options
author | xg353y <xg353y@intl.att.com> | 2017-04-11 13:30:42 +0200 |
---|---|---|
committer | xg353y <xg353y@intl.att.com> | 2017-04-11 15:34:19 +0200 |
commit | b6b7bef8bdcad15af01ac88a038dd763ce59f68f (patch) | |
tree | 399d39da23aaa37701e487df064e3e0c27709ef3 /bpmn/pom.xml | |
parent | 19340cad94eeaa1b580f7c0c99531de499e8ca14 (diff) |
[MSO-8] Update the maven dependency
Update the maven depenency for sdc-distribution-client to cooperate with the sdc changes.
Change-Id: I2da936e5c40cb68c7181bb78307192dd5655b5dc
Signed-off-by: xg353y <xg353y@intl.att.com>
Diffstat (limited to 'bpmn/pom.xml')
-rw-r--r-- | bpmn/pom.xml | 45 |
1 files changed, 24 insertions, 21 deletions
diff --git a/bpmn/pom.xml b/bpmn/pom.xml index ca9d69c5bc..ed062ba1c3 100644 --- a/bpmn/pom.xml +++ b/bpmn/pom.xml @@ -1,5 +1,5 @@ -<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"> +<?xml version="1.0" encoding="UTF-8"?> +<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"> <modelVersion>4.0.0</modelVersion> <parent> @@ -13,30 +13,30 @@ <name>BPMN Subsystem</name> <description>BPMN Subsystem for MSO</description> <packaging>pom</packaging> - + <properties> - <camunda.version>7.3.0</camunda.version> + <camunda.version>7.6.0</camunda.version> <camunda.bpm.assert.version>1.2</camunda.bpm.assert.version> <h2.version>1.3.173</h2.version> <groovy.version>2.4.7</groovy.version> <saxon.version>9.5.1-8</saxon.version> - <junit.version>4.11</junit.version> <xmlunit.version>1.6</xmlunit.version> - + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> - + </properties> <modules> <module>MSOCoreBPMN</module> + <module>MSOMockServer</module> <module>MSORESTClient</module> - <module>MSOGammaBPMN</module> + <module>MSOCommonBPMN</module> + <module>MSOInfrastructureBPMN</module> <module>MSOURN-plugin</module> <module>MSOCockpit</module> - - </modules> - + </modules> + <!-- Define artifact versions for child modules --> <dependencyManagement> <dependencies> @@ -68,11 +68,6 @@ <version>${saxon.version}</version> </dependency> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>${junit.version}</version> - </dependency> - <dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>${xmlunit.version}</version> @@ -90,7 +85,7 @@ </dependency> </dependencies> </dependencyManagement> - + <dependencies> <dependency> <groupId>org.apache.httpcomponents</groupId> @@ -101,18 +96,26 @@ <artifactId>httpclient</artifactId> </dependency> </dependencies> - + <build> <plugins> - + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.17</version> <configuration> - <testFailureIgnore>true</testFailureIgnore> + <testFailureIgnore>false</testFailureIgnore> <argLine>-Xss1m @{argLine}</argLine> + <properties> + <property> + <!-- disabling project default evosuite listener--> + <name>usedefaultlisteners</name> + <value>true</value> + </property> + </properties> </configuration> + <!-- <configuration> <testFailureIgnore>true</testFailureIgnore> <forkCount>1</forkCount> @@ -152,7 +155,7 @@ </lifecycleMappingMetadata> </configuration> </plugin> - + </plugins> </pluginManagement> </build> |