Containerization feature of SO
[so.git] / bpmn / mso-infrastructure-bpmn / 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.3.0-SNAPSHOT</version>
7         </parent>
8         <modelVersion>4.0.0</modelVersion>
9         <artifactId>mso-infrastructure-bpmn</artifactId>
10         <packaging>jar</packaging>
11         <build>
12                 <plugins>
13                         <plugin>
14                                 <groupId>org.apache.maven.plugins</groupId>
15                                 <artifactId>maven-dependency-plugin</artifactId>
16                                 <executions>
17                                         <execution>
18                                                 <id>unpack</id>
19                                                 <goals>
20                                                         <goal>unpack</goal>
21                                                 </goals>
22                                                 <configuration>
23                                                         <artifactItems>
24                                                                 <artifactItem>
25                                                                         <groupId>org.onap.so</groupId>
26                                                                         <artifactId>MSOCommonBPMN</artifactId>
27                                                                         <version>${project.version}</version>
28                                                                         <type>jar</type>
29                                                                         <overWrite>false</overWrite>
30                                                                         <outputDirectory>${project.build.outputDirectory}</outputDirectory>
31                                                                         <includes>**/*.bpmn</includes>
32                                                                 </artifactItem>
33                                                                 <artifactItem>
34                                                                         <groupId>org.onap.so</groupId>
35                                                                         <artifactId>so-bpmn-building-blocks</artifactId>
36                                                                         <version>${project.version}</version>
37                                                                         <type>jar</type>
38                                                                         <overWrite>false</overWrite>
39                                                                         <outputDirectory>${project.build.outputDirectory}</outputDirectory>
40                                                                         <includes>**/*.bpmn</includes>
41                                                                 </artifactItem>
42                                                                 <artifactItem>
43                                                                         <groupId>org.onap.so</groupId>
44                                                                         <artifactId>so-bpmn-infrastructure-flows</artifactId>
45                                                                         <version>${project.version}</version>
46                                                                         <type>jar</type>
47                                                                         <overWrite>false</overWrite>
48                                                                         <outputDirectory>${project.build.outputDirectory}</outputDirectory>
49                                                                         <includes>**/*.bpmn</includes>
50                                                                 </artifactItem>
51                                                         </artifactItems>
52                                                 </configuration>
53                                         </execution>
54                                 </executions>
55                         </plugin>
56                         <plugin>
57                                 <groupId>org.apache.maven.plugins</groupId>
58                                 <artifactId>maven-compiler-plugin</artifactId>
59                                 <executions>
60                                         <execution>
61                                                 <id>test-compile</id>
62                                                 <phase>compile</phase>
63                                                 <goals>
64                                                         <goal>testCompile</goal>
65                                                 </goals>
66                                                 <configuration>
67                                                         <skip>false</skip>
68                                                 </configuration>
69                                         </execution>
70                                 </executions>
71                         </plugin>
72                         <plugin>
73                                 <groupId>org.apache.maven.plugins</groupId>
74                                 <artifactId>maven-jar-plugin</artifactId>
75                                 <executions>
76                                         <execution>
77                                                 <id>tests</id>
78                                         </execution>
79                                         <execution>
80                                                 <id>original</id>
81                                         </execution>
82                                 </executions>
83                         </plugin>
84                         <plugin>
85                                 <groupId>org.springframework.boot</groupId>
86                                 <artifactId>spring-boot-maven-plugin</artifactId>
87                                 <version>${springboot.version}</version>
88                                 <configuration>
89                                         <mainClass>org.onap.so.adapters.requestsdb.application.MSOInfrastructureApplication</mainClass>
90                                 </configuration>
91                                 <executions>
92                                         <execution>
93                                                 <goals>
94                                                         <goal>repackage</goal>
95                                                 </goals>
96                                         </execution>
97                                 </executions>
98                         </plugin>
99                         <plugin>
100                                 <groupId>org.apache.maven.plugins</groupId>
101                                 <artifactId>maven-dependency-plugin</artifactId>
102                                 <executions>
103                                         <execution>
104                                                 <id>extract-docker-file</id>
105                                         </execution>
106                                 </executions>
107                         </plugin>
108                         <plugin>
109                                 <groupId>io.fabric8</groupId>
110                                 <artifactId>fabric8-maven-plugin</artifactId>
111                                 <executions>
112                                         <execution>
113                                                 <id>start</id>
114                                         </execution>
115                                 </executions>
116                         </plugin>
117                 </plugins>
118         </build>
119         <dependencyManagement>
120                 <dependencies>
121                         <dependency>
122                                 <!-- Import dependency management from Spring Boot -->
123                                 <groupId>org.springframework.boot</groupId>
124                                 <artifactId>spring-boot-dependencies</artifactId>
125                                 <version>${springboot.version}</version>
126                                 <type>pom</type>
127                                 <scope>import</scope>
128                         </dependency>
129                 </dependencies>
130         </dependencyManagement>
131         <dependencies>
132                 <dependency>
133                         <groupId>org.camunda.bpm.springboot</groupId>
134                         <artifactId>camunda-bpm-spring-boot-starter</artifactId>
135                         <version>2.3.0</version>
136                 </dependency>
137                 <dependency>
138                         <groupId>org.camunda.bpm.extension</groupId>
139                         <artifactId>camunda-bpm-assert</artifactId>
140                         <version>2.0-alpha2</version>
141                         <scope>test</scope>
142                 </dependency>
143                 <dependency>
144                         <groupId>org.camunda.bpm.springboot</groupId>
145                         <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
146                         <version>2.3.0</version>
147                 </dependency>
148                 <dependency>
149                         <groupId>org.springframework.boot</groupId>
150                         <artifactId>spring-boot-starter-web</artifactId>
151                 </dependency>
152                 <dependency>
153                         <groupId>org.springframework.boot</groupId>
154                         <artifactId>spring-boot-starter-data-jpa</artifactId>
155                         <optional>true</optional>
156                 </dependency>
157                 <dependency>
158                         <groupId>org.springframework.boot</groupId>
159                         <artifactId>spring-boot-starter-test</artifactId>
160                         <scope>test</scope>
161                 </dependency>
162                 <dependency>
163                         <groupId>org.onap.so</groupId>
164                         <artifactId>so-bpmn-infrastructure-common</artifactId>
165                         <version>${project.version}</version>
166                 </dependency>
167                 <dependency>
168                         <groupId>org.onap.so</groupId>
169                         <artifactId>MSOCommonBPMN</artifactId>
170                         <version>${project.version}</version>
171                 </dependency>
172                 <dependency>
173                         <groupId>org.onap.so</groupId>
174                         <artifactId>MSOCommonBPMN</artifactId>
175                         <version>${project.version}</version>
176                         <type>test-jar</type>
177                         <scope>test</scope>
178                 </dependency>
179                 <dependency>
180                         <groupId>com.h2database</groupId>
181                         <artifactId>h2</artifactId>
182                         <scope>test</scope>
183                 </dependency>
184                 <dependency>
185                         <groupId>org.springframework.cloud</groupId>
186                         <artifactId>spring-cloud-contract-wiremock</artifactId>
187                         <version>1.2.4.RELEASE</version>
188                         <scope>test</scope>
189                 </dependency>
190                 <dependency>
191                         <groupId>ch.vorburger.mariaDB4j</groupId>
192                         <artifactId>mariaDB4j</artifactId>
193                         <version>2.2.3</version>
194                         <scope>test</scope>
195                 </dependency>
196                 <dependency>
197                         <groupId>io.micrometer</groupId>
198                         <artifactId>micrometer-spring-legacy</artifactId>
199                         <version>1.0.5</version>
200                 </dependency>
201                 <dependency>
202                         <groupId>io.micrometer</groupId>
203                         <artifactId>micrometer-registry-prometheus</artifactId>
204                         <version>1.0.5</version>
205                 </dependency>
206         </dependencies>
207 </project>