Merge "remove duplicated code"
[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.6.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     <grpc.version>1.17.1</grpc.version>
17   </properties>
18   <build>
19     <plugins>
20       <plugin>
21         <groupId>org.apache.maven.plugins</groupId>
22         <artifactId>maven-surefire-plugin</artifactId>
23         <executions>
24           <execution>
25             <id>default-test</id>
26             <goals>
27               <goal>test</goal>
28             </goals>
29             <configuration>
30               <includes>
31                 <include>**/UnitTestSuite.java</include>
32               </includes>
33             </configuration>
34           </execution>
35           <execution>
36             <id>integration-test</id>
37             <goals>
38               <goal>test</goal>
39             </goals>
40             <configuration>
41               <includes>
42                 <include>**/IntegrationTestSuite.java</include>
43               </includes>
44             </configuration>
45           </execution>
46         </executions>
47         <configuration>
48           <parallel>suites</parallel>
49         </configuration>
50       </plugin>
51       <plugin>
52         <groupId>io.swagger</groupId>
53         <artifactId>swagger-codegen-maven-plugin</artifactId>
54         <version>2.3.1</version>
55         <executions>
56           <execution>
57             <goals>
58               <goal>generate</goal>
59             </goals>
60             <configuration>
61               <inputSpec>${project.basedir}/src/main/resources/naming-service/swagger.json</inputSpec>
62               <apiPackage>org.onap.namingservice.api</apiPackage>
63               <modelPackage>org.onap.namingservice.model</modelPackage>
64               <invokerPackage>org.onap.namingservice.invoker</invokerPackage>
65             </configuration>
66           </execution>
67         </executions>
68         <configuration>
69           <inputSpec>${project.basedir}/src/main/resources/swagger.json</inputSpec>
70           <language>java</language>
71           <configOptions>
72             <sourceFolder>src/gen/java/main</sourceFolder>
73             <serializableModel>true</serializableModel>
74           </configOptions>
75           <output>${project.build.directory}/generated-sources</output>
76           <generateApis>false</generateApis>
77           <library>jersey2</library>
78           <generateSupportingFiles>false</generateSupportingFiles>
79         </configuration>
80       </plugin>
81     </plugins>
82   </build>
83   <dependencyManagement>
84     <dependencies>
85       <dependency>
86         <!-- Import dependency management from Spring Boot -->
87         <groupId>org.springframework.boot</groupId>
88         <artifactId>spring-boot-dependencies</artifactId>
89         <version>${springboot.version}</version>
90         <type>pom</type>
91         <scope>import</scope>
92       </dependency>
93     </dependencies>
94   </dependencyManagement>
95   <dependencies>
96     <dependency>
97       <groupId>org.camunda.bpm.springboot</groupId>
98       <artifactId>camunda-bpm-spring-boot-starter</artifactId>
99       <version>${camunda.springboot.version}</version>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.springframework.cloud</groupId>
104       <artifactId>spring-cloud-contract-wiremock</artifactId>
105       <version>1.2.4.RELEASE</version>
106       <scope>test</scope>
107     </dependency>
108     <dependency>
109       <groupId>org.springframework.boot</groupId>
110       <artifactId>spring-boot-starter-test</artifactId>
111       <scope>test</scope>
112     </dependency>
113     <dependency>
114       <groupId>org.camunda.bpm.extension.mockito</groupId>
115       <artifactId>camunda-bpm-mockito</artifactId>
116     </dependency>
117     <dependency>
118       <groupId>org.onap.so</groupId>
119       <artifactId>MSOCommonBPMN</artifactId>
120       <version>${project.version}</version>
121     </dependency>
122     <dependency>
123       <groupId>org.onap.so</groupId>
124       <artifactId>so-bpmn-infrastructure-common</artifactId>
125       <version>${project.version}</version>
126     </dependency>
127     <dependency>
128       <groupId>org.onap.so.adapters</groupId>
129       <artifactId>mso-adapter-utils</artifactId>
130       <version>${project.version}</version>
131     </dependency>
132     <dependency>
133       <groupId>org.onap.sdnc.northbound</groupId>
134       <artifactId>generic-resource-api-client</artifactId>
135       <version>${sdnc.northbound.version}</version>
136       <exclusions>
137         <exclusion>
138           <groupId>javax.ws.rs</groupId>
139           <artifactId>jsr311-api</artifactId>
140         </exclusion>
141       </exclusions>
142     </dependency>
143     <dependency>
144       <groupId>ch.vorburger.mariaDB4j</groupId>
145       <artifactId>mariaDB4j</artifactId>
146       <version>2.2.3</version>
147       <scope>test</scope>
148     </dependency>
149     <dependency>
150       <groupId>org.apache.commons</groupId>
151       <artifactId>commons-lang3</artifactId>
152     </dependency>
153     <dependency>
154       <groupId>org.onap.so.adapters</groupId>
155       <artifactId>mso-vnfm-adapter-api</artifactId>
156       <version>${project.version}</version>
157     </dependency>
158     <dependency>
159       <groupId>org.springframework.boot</groupId>
160       <artifactId>spring-boot-configuration-processor</artifactId>
161       <optional>true</optional>
162     </dependency>
163     <dependency>
164       <groupId>nl.jqno.equalsverifier</groupId>
165       <artifactId>equalsverifier</artifactId>
166       <version>2.5.1</version>
167       <scope>test</scope>
168     </dependency>
169     <dependency>
170       <groupId>io.grpc</groupId>
171       <artifactId>grpc-testing</artifactId>
172       <version>${grpc.version}</version>
173       <scope>test</scope>
174     </dependency>
175   </dependencies>
176 </project>