554debad3f75b38507655630a74db7149a4aafe0
[so.git] / bpmn / MSOCoreBPMN / pom.xml
1 <?xml version="1.0"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         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>
7         <version>1.4.0-SNAPSHOT</version>
8         </parent>
9         <modelVersion>4.0.0</modelVersion>
10         <artifactId>MSOCoreBPMN</artifactId>
11         <packaging>jar</packaging>
12
13         <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>
31
32                         <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>
51
52         <dependencies>
53                 <!-- latest commons-fileupload -->
54                 <dependency>
55                         <groupId>commons-fileupload</groupId>
56                         <artifactId>commons-fileupload</artifactId>
57             <version>1.3.3</version>
58                 </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>
95             <groupId>org.onap.so</groupId>
96                         <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>   
109                 <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>
119                 <dependency>
120                         <groupId>org.springframework</groupId>
121                         <artifactId>spring-beans</artifactId>
122                 </dependency>
123                 <dependency>
124                         <groupId>org.yaml</groupId>
125                         <artifactId>snakeyaml</artifactId>
126                 </dependency>           
127     </dependencies>
128 </project>