blob: 151ba2c3aabe772c5a164a309ac3581669338beb [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001<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>
Rob Daugherty69d7c012018-08-03 14:02:39 -040089 <mainClass>org.onap.so.bpmn.infrastructure.MSOInfrastructureApplication</mainClass>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040090 </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>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400138 <groupId>org.camunda.bpm.springboot</groupId>
139 <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
140 <version>2.3.0</version>
141 </dependency>
142 <dependency>
143 <groupId>org.springframework.boot</groupId>
144 <artifactId>spring-boot-starter-web</artifactId>
145 </dependency>
146 <dependency>
147 <groupId>org.springframework.boot</groupId>
148 <artifactId>spring-boot-starter-data-jpa</artifactId>
149 <optional>true</optional>
150 </dependency>
151 <dependency>
152 <groupId>org.springframework.boot</groupId>
153 <artifactId>spring-boot-starter-test</artifactId>
154 <scope>test</scope>
155 </dependency>
156 <dependency>
157 <groupId>org.onap.so</groupId>
158 <artifactId>so-bpmn-infrastructure-common</artifactId>
159 <version>${project.version}</version>
160 </dependency>
161 <dependency>
162 <groupId>org.onap.so</groupId>
163 <artifactId>MSOCommonBPMN</artifactId>
164 <version>${project.version}</version>
165 </dependency>
166 <dependency>
167 <groupId>org.onap.so</groupId>
168 <artifactId>MSOCommonBPMN</artifactId>
169 <version>${project.version}</version>
170 <type>test-jar</type>
171 <scope>test</scope>
172 </dependency>
173 <dependency>
174 <groupId>com.h2database</groupId>
175 <artifactId>h2</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400176 </dependency>
177 <dependency>
178 <groupId>org.springframework.cloud</groupId>
179 <artifactId>spring-cloud-contract-wiremock</artifactId>
180 <version>1.2.4.RELEASE</version>
181 <scope>test</scope>
182 </dependency>
183 <dependency>
184 <groupId>ch.vorburger.mariaDB4j</groupId>
185 <artifactId>mariaDB4j</artifactId>
186 <version>2.2.3</version>
187 <scope>test</scope>
188 </dependency>
189 <dependency>
190 <groupId>io.micrometer</groupId>
191 <artifactId>micrometer-spring-legacy</artifactId>
192 <version>1.0.5</version>
193 </dependency>
194 <dependency>
195 <groupId>io.micrometer</groupId>
196 <artifactId>micrometer-registry-prometheus</artifactId>
197 <version>1.0.5</version>
198 </dependency>
Smokowski, Steve (ss835w)76368a02018-08-14 16:30:49 -0400199 <dependency>
200 <groupId>org.onap.so</groupId>
201 <artifactId>so-bpmn-tasks</artifactId>
202 <version>${project.version}</version>
203 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400204 </dependencies>
205</project>