Bump version to 1.13.0-SNAPSHOT
[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.13.0-SNAPSHOT</version>
8   </parent>
9   <modelVersion>4.0.0</modelVersion>
10   <artifactId>MSOCoreBPMN</artifactId>
11   <packaging>jar</packaging>
12   <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>
30       <plugin>
31         <groupId>org.apache.maven.plugins</groupId>
32         <artifactId>maven-jar-plugin</artifactId>
33         <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>
48   <dependencies>
49     <dependency>
50       <groupId>commons-fileupload</groupId>
51       <artifactId>commons-fileupload</artifactId>
52       <version>1.4</version>
53     </dependency>
54     <dependency>
55       <groupId>org.camunda.bpm</groupId>
56       <artifactId>camunda-engine-plugin-connect</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>org.camunda.bpm</groupId>
60       <artifactId>camunda-engine</artifactId>
61     </dependency>
62     <dependency>
63       <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>
91   </dependencies>
92 </project>