blob: 0491dd9d561ce891f5b14c763dd9f2be1cffa47f [file] [log] [blame]
Kuleshov, Elena833d2192020-01-10 09:53:29 -05001<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 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.onap.so</groupId>
6 <artifactId>adapters</artifactId>
seshukmb9af26a2020-02-26 19:30:17 +08007 <version>1.6.0-SNAPSHOT</version>
Kuleshov, Elena833d2192020-01-10 09:53:29 -05008 </parent>
9
10 <groupId>org.onap.so.adapters</groupId>
11 <artifactId>so-appc-orchestrator</artifactId>
12 <packaging>jar</packaging>
13 <properties>
14 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16 <java.version>1.8</java.version>
Kuleshov, Elena833d2192020-01-10 09:53:29 -050017 </properties>
18 <name>so-appc-orchestrator</name>
19 <description>MSO APPC-C Orchestrator</description>
20 <build>
21 <plugins>
22 <plugin>
23 <groupId>org.springframework.boot</groupId>
24 <artifactId>spring-boot-maven-plugin</artifactId>
25 <version>${springboot.version}</version>
26 <configuration>
27 <mainClass>org.onap.so.adapters.appc.orchestrator.AppcOrchestratorApplication</mainClass>
28 </configuration>
29 <executions>
30 <execution>
31 <goals>
32 <goal>repackage</goal>
33 </goals>
34 </execution>
35 </executions>
36 </plugin>
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-dependency-plugin</artifactId>
40 <executions>
41 <execution>
42 <id>extract-docker-file</id>
43 </execution>
44 </executions>
45 </plugin>
46 <plugin>
47 <groupId>io.fabric8</groupId>
Benjamin, Max5f57d092020-05-13 17:48:03 -040048 <artifactId>docker-maven-plugin</artifactId>
Kuleshov, Elena833d2192020-01-10 09:53:29 -050049 <executions>
50 <execution>
51 <id>start</id>
52 </execution>
53 </executions>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-compiler-plugin</artifactId>
58 <version>3.3</version>
59 <configuration>
60 <source>1.8</source>
61 <target>1.8</target>
62 <fork>true</fork>
63 <compilerArgs>
64 <arg>-parameters</arg>
65 </compilerArgs>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-surefire-plugin</artifactId>
71 <executions>
72 <execution>
73 <id>default-test</id>
74 <goals>
75 <goal>test</goal>
76 </goals>
77 <configuration>
78 <includes>
79 <include>**/AllTestsTestSuite.java</include>
80 </includes>
81 <parallel>suites</parallel>
82 </configuration>
83 </execution>
84 </executions>
85 </plugin>
86 </plugins>
87 <pluginManagement>
88 <plugins>
89 <!--This plugin's configuration is used to store Eclipse m2e settings
90 only. It has no influence on the Maven build itself. -->
91 <plugin>
92 <groupId>org.eclipse.m2e</groupId>
93 <artifactId>lifecycle-mapping</artifactId>
94 <version>1.0.0</version>
95 <configuration>
96 <lifecycleMappingMetadata>
97 <pluginExecutions>
98 <pluginExecution>
99 <pluginExecutionFilter>
100 <groupId>
101 org.jvnet.jax-ws-commons
102 </groupId>
103 <artifactId>
104 jaxws-maven-plugin
105 </artifactId>
106 <versionRange>
107 [2.3,)
108 </versionRange>
109 <goals>
110 <goal>wsgen</goal>
111 </goals>
112 </pluginExecutionFilter>
113 <action>
114 <ignore>
115 </ignore>
116 </action>
117 </pluginExecution>
118 </pluginExecutions>
119 </lifecycleMappingMetadata>
120 </configuration>
121 </plugin>
122
123 <plugin>
124 <groupId>org.jacoco</groupId>
125 <artifactId>jacoco-maven-plugin</artifactId>
126 </plugin>
127 </plugins>
128 </pluginManagement>
129 <finalName>${project.artifactId}-${project.version}</finalName>
130 </build>
131 <dependencies>
132 <dependency>
133 <groupId>org.springframework.boot</groupId>
134 <artifactId>spring-boot-starter-actuator</artifactId>
135 </dependency>
136 <dependency>
137 <groupId>org.springframework.boot</groupId>
138 <artifactId>spring-boot-starter-web</artifactId>
139 </dependency>
140 <dependency>
141 <groupId>org.springframework.boot</groupId>
142 <artifactId>spring-boot-starter-test</artifactId>
143 <scope>test</scope>
144 </dependency>
145 <dependency>
146 <groupId>io.micrometer</groupId>
147 <artifactId>micrometer-core</artifactId>
148 </dependency>
149 <dependency>
150 <groupId>io.micrometer</groupId>
151 <artifactId>micrometer-registry-prometheus</artifactId>
152 </dependency>
153 <dependency>
154 <groupId>com.google.guava</groupId>
155 <artifactId>guava</artifactId>
156 </dependency>
157 <dependency>
158 <groupId>org.onap.so</groupId>
159 <artifactId>common</artifactId>
160 <version>${project.version}</version>
161 </dependency>
162 <dependency>
163 <groupId>org.camunda.bpm</groupId>
164 <artifactId>camunda-external-task-client</artifactId>
165 <version>1.1.1</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.appc.client</groupId>
174 <artifactId>client-lib</artifactId>
175 <version>${appc.client.version}</version>
176 <exclusions>
177 <exclusion>
178 <groupId>org.mockito</groupId>
179 <artifactId>mockito-core</artifactId>
180 </exclusion>
181 <exclusion>
182 <groupId>org.powermock</groupId>
183 <artifactId>powermock-module-junit4</artifactId>
184 </exclusion>
185 <exclusion>
186 <groupId>org.powermock</groupId>
187 <artifactId>powermock-api-mockito</artifactId>
188 </exclusion>
189 </exclusions>
190 </dependency>
191 <dependency>
192 <groupId>org.onap.so.adapters</groupId>
193 <artifactId>mso-adapter-utils</artifactId>
194 <version>${project.version}</version>
195 </dependency>
196 <dependency>
197 <groupId>org.onap.appc.client</groupId>
198 <artifactId>client-kit</artifactId>
199 <version>${appc.client.version}</version>
200 <exclusions>
201 <exclusion>
202 <groupId>org.mockito</groupId>
203 <artifactId>mockito-core</artifactId>
204 </exclusion>
205 </exclusions>
206 </dependency>
207 <!-- Test Dependencies -->
208 <dependency>
209 <groupId>pl.pragmatists</groupId>
210 <artifactId>JUnitParams</artifactId>
211 <version>1.0.5</version>
212 <scope>test</scope>
213 </dependency>
214 <dependency>
215 <groupId>junit</groupId>
216 <artifactId>junit</artifactId>
217 <scope>test</scope>
218 </dependency>
219 </dependencies>
220</project>