forked from bpmn-miwg/bpmn-miwg-test-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
57 lines (52 loc) · 1.75 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?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>
<groupId>org.omg.bpmn.miwg</groupId>
<artifactId>test-suite</artifactId>
<version>0.2-SNAPSHOT</version>
<name>BPMN 2.0 MIWG Test Suite</name>
<description>
<![CDATA[
Reference BPMN files and various vendor's implementations of the same.
]]>
</description>
<packaging>jar</packaging>
<properties>
<java.version>1.6</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bpmn-miwg.version>0.2-SNAPSHOT</bpmn-miwg.version>
<!-- Use this property to name just one tool to be tested
<project.bpmn.application>iGrafx FlowCharter 2013 15.1.1.1580</project.bpmn.application>
-->
</properties>
<pluginRepositories>
<pluginRepository>
<id>bpmn-miwg-snapshot</id>
<name>BPMN-MIWG Snapshot Repository</name>
<url>http://repository-bpmn-miwg.forge.cloudbees.com/snapshot/</url>
</pluginRepository>
</pluginRepositories>
<build>
<resources>
<resource>
<filtering>false</filtering>
<directory>${basedir}</directory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>target/**/*</exclude>
<exclude>**/*.bak</exclude>
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.omg.bpmn.miwg</groupId>
<artifactId>bpmn-miwg-maven-plugin</artifactId>
<version>${bpmn-miwg.version}</version>
</plugin>
</plugins>
</build>
</project>