Merge "Added check for nullpointer exception"
[so.git] / bpmn / so-bpmn-building-blocks / 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>so-bpmn-building-blocks</artifactId>
11         <packaging>jar</packaging>
12         <properties>
13                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15         </properties>
16         <build>
17                 <plugins>
18                         <plugin>
19                                 <groupId>org.apache.cxf</groupId>
20                                 <artifactId>cxf-codegen-plugin</artifactId>
21                                 <version>2.5.2</version>
22                         </plugin>
23                         <plugin>
24                                 <groupId>org.apache.maven.plugins</groupId>
25                                 <artifactId>maven-surefire-plugin</artifactId>
26                                 <executions>
27                                         <execution>
28                                                 <id>default-test</id>
29                                                 <goals>
30                                                         <goal>test</goal>
31                                                 </goals>
32                                                 <configuration>
33                                                         <includes>
34                                                                 <include>**/AllTestSuites.java</include>
35                                                         </includes>
36                                                 </configuration>
37                                         </execution>
38                                 </executions>
39                         </plugin>
40                 </plugins>
41
42                 <pluginManagement>
43                         <plugins>
44                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
45                                         only. It has no influence on the Maven build itself. -->
46                                 <plugin>
47                                         <groupId>org.eclipse.m2e</groupId>
48                                         <artifactId>lifecycle-mapping</artifactId>
49                                         <version>1.0.0</version>
50                                         <configuration>
51                                                 <lifecycleMappingMetadata>
52                                                         <pluginExecutions>
53                                                                 <pluginExecution>
54                                                                         <pluginExecutionFilter>
55                                                                                 <groupId>
56                                                                                         org.apache.maven.plugins
57                                                                                 </groupId>
58                                                                                 <artifactId>
59                                                                                         maven-antrun-plugin
60                                                                                 </artifactId>
61                                                                                 <versionRange>
62                                                                                         [1.3,)
63                                                                                 </versionRange>
64                                                                                 <goals>
65                                                                                         <goal>run</goal>
66                                                                                 </goals>
67                                                                         </pluginExecutionFilter>
68                                                                         <action>
69                                                                                 <ignore />
70                                                                         </action>
71                                                                 </pluginExecution>
72                                                         </pluginExecutions>
73                                                 </lifecycleMappingMetadata>
74                                         </configuration>
75                                 </plugin>
76                         </plugins>
77                 </pluginManagement>
78         </build>
79         <dependencies>
80                 <dependency>
81                         <groupId>org.camunda.bpm</groupId>
82                         <artifactId>camunda-engine</artifactId>
83                         <version>${camunda.version}</version>
84                 </dependency>
85                 <dependency>
86                         <groupId>org.camunda.bpm.springboot</groupId>
87                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
88                         <version>${camunda.springboot.version}</version>
89                         <scope>test</scope>
90                 </dependency>
91                 <dependency>
92                         <groupId>org.camunda.bpm.springboot</groupId>
93                         <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
94                         <version>${camunda.springboot.version}</version>
95                         <scope>test</scope>
96                 </dependency>
97                 <dependency>
98                         <groupId>org.camunda.bpm.extension.mockito</groupId>
99                         <artifactId>camunda-bpm-mockito</artifactId>
100                         <version>3.2.1</version>
101                         <scope>test</scope>
102                 </dependency>
103                 <dependency>
104                         <groupId>org.camunda.bpm.extension</groupId>
105                         <artifactId>camunda-bpm-assert</artifactId>
106                         <version>2.0-alpha2</version>
107                         <scope>test</scope>
108                 </dependency>
109                 <dependency>
110                         <groupId>org.assertj</groupId>
111                         <artifactId>assertj-core</artifactId>
112                         <version>1.7.0</version>
113                         <scope>test</scope>
114                 </dependency>
115                 <dependency>
116                         <groupId>org.springframework.boot</groupId>
117                         <artifactId>spring-boot-starter-test</artifactId>
118                         <scope>test</scope>
119                 </dependency>
120                 <dependency>
121                         <groupId>com.h2database</groupId>
122                         <artifactId>h2</artifactId>
123                         <scope>test</scope>
124                 </dependency>
125                 <dependency>
126                         <groupId>org.onap.so</groupId>
127                         <artifactId>MSOCommonBPMN</artifactId>
128                         <version>${project.version}</version>
129                 </dependency>
130                 <dependency>
131                         <groupId>org.onap.so</groupId>
132                         <artifactId>so-bpmn-tasks</artifactId>
133                         <version>${project.version}</version>
134                 </dependency>
135                 <dependency>
136                         <groupId>org.onap.so</groupId>
137                         <artifactId>so-bpmn-infrastructure-common</artifactId>
138                         <version>${project.version}</version>
139                 </dependency>
140                 <dependency>
141                         <groupId>commons-net</groupId>
142                         <artifactId>commons-net</artifactId>
143                         <version>3.6</version>
144                 </dependency>
145                 <dependency>
146                         <groupId>ch.vorburger.mariaDB4j</groupId>
147                         <artifactId>mariaDB4j</artifactId>
148                         <version>2.2.3</version>
149                         <scope>test</scope>
150                 </dependency>           
151         </dependencies>
152 </project>