blob: 47254e75f2523c32e62f79b5de730c25d927233b [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>
seshukmb9af26a2020-02-26 19:30:17 +08007 <version>1.6.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>
ChrisC1ba1d192017-03-13 05:01:04 -070012
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -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)c0247ec2019-04-11 10:34:45 -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)c0247ec2019-04-11 10:34:45 -040052 <dependencies>
53 <!-- latest commons-fileupload -->
54 <dependency>
55 <groupId>commons-fileupload</groupId>
56 <artifactId>commons-fileupload</artifactId>
Sangalang, Felix785fab52019-06-21 10:46:38 -040057 <version>1.4</version>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040058 </dependency>
59 <dependency>
60 <groupId>javax.servlet</groupId>
61 <artifactId>javax.servlet-api</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.camunda.connect</groupId>
65 <artifactId>camunda-connect-connectors-all</artifactId>
66 <version>1.0.5</version>
67 </dependency>
68 <dependency>
69 <groupId>org.camunda.bpm</groupId>
70 <artifactId>camunda-engine-plugin-connect</artifactId>
71 <version>${camunda.version}</version>
72 </dependency>
73 <dependency>
74 <groupId>org.camunda.bpm</groupId>
75 <artifactId>camunda-engine</artifactId>
76 <version>${camunda.version}</version>
77 </dependency>
78 <dependency>
79 <groupId>org.codehaus.groovy</groupId>
80 <artifactId>groovy-all</artifactId>
81 <scope>compile</scope>
82 </dependency>
83 <dependency>
84 <groupId>com.h2database</groupId>
85 <artifactId>h2</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>net.sf.saxon</groupId>
90 <artifactId>Saxon-HE</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.onap.so</groupId>
94 <artifactId>common</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97 <dependency>
98 <groupId>org.json</groupId>
99 <artifactId>json</artifactId>
100 <version>20160212</version>
101 </dependency>
102 <dependency>
103 <groupId>org.xmlunit</groupId>
104 <artifactId>xmlunit-core</artifactId>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>com.github.fge</groupId>
109 <artifactId>json-schema-validator</artifactId>
110 <version>2.2.6</version>
111 </dependency>
112 <dependency>
113 <groupId>com.github.fge</groupId>
114 <artifactId>json-schema-core</artifactId>
115 <version>1.2.4</version>
116 </dependency>
117 <dependency>
118 <groupId>org.springframework</groupId>
119 <artifactId>spring-beans</artifactId>
120 </dependency>
121 <dependency>
122 <groupId>org.yaml</groupId>
123 <artifactId>snakeyaml</artifactId>
124 </dependency>
125 </dependencies>
Arthur Martella62cd6aa2017-09-08 13:27:46 -0400126</project>