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