blob: 4b196636fc3dc965b50e293fb0fdb85d525f7840 [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<?xml version="1.0"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <parent>
5 <groupId>org.onap.so</groupId>
6 <artifactId>bpmn</artifactId>
waqas.ikram98537632021-06-24 11:51:34 +01007 <version>1.9.0-SNAPSHOT</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04008 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <artifactId>MSOCoreBPMN</artifactId>
11 <packaging>jar</packaging>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040012 <build>
13 <plugins>
14 <plugin>
15 <groupId>org.apache.maven.plugins</groupId>
16 <artifactId>maven-compiler-plugin</artifactId>
17 <executions>
18 <execution>
19 <id>test-compile</id>
20 <phase>compile</phase>
21 <goals>
22 <goal>testCompile</goal>
23 </goals>
24 <configuration>
25 <skip>false</skip>
26 </configuration>
27 </execution>
28 </executions>
29 </plugin>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040030 <plugin>
31 <groupId>org.apache.maven.plugins</groupId>
32 <artifactId>maven-jar-plugin</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040033 <executions>
34 <execution>
35 <id>tests-jar</id>
36 <phase>package</phase>
37 <goals>
38 <goal>test-jar</goal>
39 </goals>
40 <configuration>
41 <skip>false</skip>
42 </configuration>
43 </execution>
44 </executions>
45 </plugin>
46 </plugins>
47 </build>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040048 <dependencies>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040049 <dependency>
50 <groupId>commons-fileupload</groupId>
51 <artifactId>commons-fileupload</artifactId>
Sangalang, Felix785fab52019-06-21 10:46:38 -040052 <version>1.4</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040053 </dependency>
54 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040055 <groupId>org.camunda.bpm</groupId>
56 <artifactId>camunda-engine-plugin-connect</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040057 </dependency>
58 <dependency>
59 <groupId>org.camunda.bpm</groupId>
60 <artifactId>camunda-engine</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040061 </dependency>
62 <dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040063 <groupId>com.h2database</groupId>
64 <artifactId>h2</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>net.sf.saxon</groupId>
69 <artifactId>Saxon-HE</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.onap.so</groupId>
73 <artifactId>common</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>org.json</groupId>
78 <artifactId>json</artifactId>
79 <version>20160212</version>
80 </dependency>
81 <dependency>
82 <groupId>org.xmlunit</groupId>
83 <artifactId>xmlunit-core</artifactId>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>com.github.fge</groupId>
88 <artifactId>json-schema-validator</artifactId>
89 <version>2.2.6</version>
90 </dependency>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040091 </dependencies>
Arthur Martella62cd6aa2017-09-08 13:27:46 -040092</project>