0243ce8ae6e0ae17b02a8e6778cfe82988e91a49
[so.git] / bpmn / so-bpmn-tasks / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <parent>
4                 <groupId>org.onap.so</groupId>
5                 <artifactId>bpmn</artifactId>
6                 <version>1.4.0-SNAPSHOT</version>
7         </parent>
8         <modelVersion>4.0.0</modelVersion>
9         <artifactId>so-bpmn-tasks</artifactId>
10         <packaging>jar</packaging>
11         <properties>
12                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
14                 <maven.compiler.target>1.8</maven.compiler.target>
15                 <maven.compiler.source>1.8</maven.compiler.source>
16         </properties>
17         <build>
18                 <plugins>
19                         <plugin>
20                                 <groupId>org.apache.maven.plugins</groupId>
21                                 <artifactId>maven-surefire-plugin</artifactId>
22                                 <executions>
23                                         <execution>
24                                                 <id>default-test</id>
25                                                 <goals>
26                                                         <goal>test</goal>
27                                                 </goals>
28                                                 <configuration>
29                                                         <includes>
30                                                                 <include>**/UnitTestSuite.java</include>
31                                                         </includes>
32                                                 </configuration>
33                                         </execution>
34                                         <execution>
35                                                 <id>integration-test</id>
36                                                 <goals>
37                                                         <goal>test</goal>
38                                                 </goals>
39                                                 <configuration>
40                                                         <includes>
41                                                                 <include>**/IntegrationTestSuite.java</include>
42                                                         </includes>
43                                                 </configuration>
44                                         </execution>
45                                 </executions>
46                         </plugin>
47                         <plugin>
48                                 <groupId>io.swagger</groupId>
49                                 <artifactId>swagger-codegen-maven-plugin</artifactId>
50                                 <version>2.3.1</version>
51                                 <executions>
52                                         <execution>
53                                                 <goals>
54                                                         <goal>generate</goal>
55                                                 </goals>
56                                                 <configuration>
57                                                         <inputSpec>${project.basedir}/src/main/resources/naming-service/swagger.json</inputSpec>
58                                                         <apiPackage>org.onap.namingservice.api</apiPackage>
59                                                         <modelPackage>org.onap.namingservice.model</modelPackage>
60                                                         <invokerPackage>org.onap.namingservice.invoker</invokerPackage>
61                                                 </configuration>
62                                         </execution>
63                                 </executions>
64                                 <configuration>
65                                         <inputSpec>${project.basedir}/src/main/resources/swagger.json</inputSpec>
66                                         <language>java</language>
67                                         <configOptions>
68                                                 <sourceFolder>src/gen/java/main</sourceFolder>
69                                                 <serializableModel>true</serializableModel>
70                                         </configOptions>
71                                         <output>${project.build.directory}/generated-sources</output>
72                                         <generateApis>false</generateApis>
73                                         <library>jersey2</library>
74                                         <generateSupportingFiles>false</generateSupportingFiles>
75                                 </configuration>
76                         </plugin>
77                 </plugins>
78         </build>
79         <dependencyManagement>
80                 <dependencies>
81                         <dependency>
82                                 <!-- Import dependency management from Spring Boot -->
83                                 <groupId>org.springframework.boot</groupId>
84                                 <artifactId>spring-boot-dependencies</artifactId>
85                                 <version>${springboot.version}</version>
86                                 <type>pom</type>
87                                 <scope>import</scope>
88                         </dependency>
89                 </dependencies>
90         </dependencyManagement>
91         <dependencies>
92                 <dependency>
93                         <groupId>org.camunda.bpm.springboot</groupId>
94                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
95                         <version>${camunda.springboot.version}</version>
96                         <scope>test</scope>
97                 </dependency>
98                 <dependency>
99                         <groupId>org.springframework.cloud</groupId>
100                         <artifactId>spring-cloud-contract-wiremock</artifactId>
101                         <version>1.2.4.RELEASE</version>
102                         <scope>test</scope>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.springframework.boot</groupId>
106                         <artifactId>spring-boot-starter-test</artifactId>
107                         <scope>test</scope>
108                 </dependency>
109                 <dependency>
110                         <groupId>org.camunda.bpm.extension.mockito</groupId>
111                         <artifactId>camunda-bpm-mockito</artifactId>
112                 </dependency>
113                 <dependency>
114                         <groupId>org.onap.so</groupId>
115                         <artifactId>MSOCommonBPMN</artifactId>
116                         <version>${project.version}</version>
117                 </dependency>
118                 <dependency>
119                         <groupId>org.onap.so</groupId>
120                         <artifactId>so-bpmn-infrastructure-common</artifactId>
121                         <version>${project.version}</version>
122                 </dependency>
123                 <dependency>
124                         <groupId>org.onap.so.adapters</groupId>
125                         <artifactId>mso-adapter-utils</artifactId>
126                         <version>${project.version}</version>
127                 </dependency>
128                 <dependency>
129                         <groupId>org.onap.sdnc.northbound</groupId>
130                         <artifactId>generic-resource-api-client</artifactId>
131                         <version>1.5.0-SNAPSHOT</version>
132                         <exclusions>
133                                 <exclusion>
134                                         <groupId>javax.ws.rs</groupId>
135                                         <artifactId>jsr311-api</artifactId>
136                                 </exclusion>
137                         </exclusions>
138                 </dependency>
139                 <dependency>
140                         <groupId>ch.vorburger.mariaDB4j</groupId>
141                         <artifactId>mariaDB4j</artifactId>
142                         <version>2.2.3</version>
143                         <scope>test</scope>
144                 </dependency>
145                 <dependency>
146                         <groupId>org.apache.commons</groupId>
147                         <artifactId>commons-lang3</artifactId>
148                 </dependency>
149         </dependencies>
150 </project>