blob: fc686e503c893bb6850e0228c89a5569fd558c77 [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)5a6a6de2018-07-30 15:56:09 -04003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04006 <artifactId>bpmn</artifactId>
7 <version>1.3.0-SNAPSHOT</version>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <artifactId>MSOCoreBPMN</artifactId>
11 <packaging>jar</packaging>
ChrisC1ba1d192017-03-13 05:01:04 -070012
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040013 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 <executions>
19 <execution>
20 <id>test-compile</id>
21 <phase>compile</phase>
22 <goals>
23 <goal>testCompile</goal>
24 </goals>
25 <configuration>
26 <skip>false</skip>
27 </configuration>
28 </execution>
29 </executions>
30 </plugin>
ChrisC025301d2017-01-31 11:40:03 +010031
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040032 <plugin>
33 <groupId>org.apache.maven.plugins</groupId>
34 <artifactId>maven-jar-plugin</artifactId>
35 <version>3.0.2</version>
36 <executions>
37 <execution>
38 <id>tests-jar</id>
39 <phase>package</phase>
40 <goals>
41 <goal>test-jar</goal>
42 </goals>
43 <configuration>
44 <skip>false</skip>
45 </configuration>
46 </execution>
47 </executions>
48 </plugin>
49 </plugins>
50 </build>
ChrisC025301d2017-01-31 11:40:03 +010051
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040052 <dependencies>
53 <!-- latest commons-fileupload -->
54 <dependency>
55 <groupId>commons-fileupload</groupId>
56 <artifactId>commons-fileupload</artifactId>
Byung-Woo June9ee7262018-03-19 09:33:53 -040057 <version>1.3.3</version>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040058 </dependency>
59 <dependency>
60 <groupId>javax.servlet</groupId>
61 <artifactId>javax.servlet-api</artifactId>
62 <version>3.0.1</version>
63 <scope>provided</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.camunda.connect</groupId>
67 <artifactId>camunda-connect-connectors-all</artifactId>
68 <version>1.0.5</version>
69 </dependency>
70 <dependency>
71 <groupId>org.camunda.bpm</groupId>
72 <artifactId>camunda-engine-plugin-connect</artifactId>
73 <version>7.7.0</version>
74 </dependency>
75 <dependency>
76 <groupId>org.camunda.bpm</groupId>
77 <artifactId>camunda-engine</artifactId>
78 <version>7.7.0</version>
79 </dependency>
80 <dependency>
81 <groupId>org.codehaus.groovy</groupId>
82 <artifactId>groovy-all</artifactId>
83 <scope>compile</scope>
84 </dependency>
85 <dependency>
86 <groupId>com.h2database</groupId>
87 <artifactId>h2</artifactId>
88 <scope>test</scope>
89 </dependency>
90 <dependency>
91 <groupId>net.sf.saxon</groupId>
92 <artifactId>Saxon-HE</artifactId>
93 </dependency>
94 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050095 <groupId>org.onap.so</groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040096 <artifactId>common</artifactId>
97 <version>${project.version}</version>
98 </dependency>
99 <dependency>
100 <groupId>org.json</groupId>
101 <artifactId>json</artifactId>
102 <version>20160212</version>
103 </dependency>
104 <dependency>
105 <groupId>org.xmlunit</groupId>
106 <artifactId>xmlunit-core</artifactId>
107 <scope>test</scope>
108 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400109 <dependency>
110 <groupId>com.github.fge</groupId>
111 <artifactId>json-schema-validator</artifactId>
112 <version>2.2.6</version>
113 </dependency>
114 <dependency>
115 <groupId>com.github.fge</groupId>
116 <artifactId>json-schema-core</artifactId>
117 <version>1.2.4</version>
118 </dependency>
Rob Daugherty38f72072018-03-14 02:07:32 -0400119 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400120 <groupId>org.springframework</groupId>
121 <artifactId>spring-beans</artifactId>
Rob Daugherty38f72072018-03-14 02:07:32 -0400122 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400123 <dependency>
124 <groupId>org.yaml</groupId>
125 <artifactId>snakeyaml</artifactId>
126 </dependency>
xg353yb6b7bef2017-04-11 13:30:42 +0200127 </dependencies>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400128</project>