blob: a02df8cbc216d58f632ed25bdbc7a61a1794fb41 [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>
waqas.ikram98537632021-06-24 11:51:34 +01007 <version>1.9.0-SNAPSHOT</version>
Kuleshov, Elena833d2192020-01-10 09:53:29 -05008 </parent>
Kuleshov, Elena833d2192020-01-10 09:53:29 -05009 <groupId>org.onap.so.adapters</groupId>
10 <artifactId>so-appc-orchestrator</artifactId>
11 <packaging>jar</packaging>
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Kuleshov, Elena833d2192020-01-10 09:53:29 -050015 </properties>
16 <name>so-appc-orchestrator</name>
17 <description>MSO APPC-C Orchestrator</description>
18 <build>
19 <plugins>
20 <plugin>
21 <groupId>org.springframework.boot</groupId>
22 <artifactId>spring-boot-maven-plugin</artifactId>
Kuleshov, Elena833d2192020-01-10 09:53:29 -050023 <configuration>
24 <mainClass>org.onap.so.adapters.appc.orchestrator.AppcOrchestratorApplication</mainClass>
25 </configuration>
26 <executions>
27 <execution>
28 <goals>
29 <goal>repackage</goal>
30 </goals>
31 </execution>
32 </executions>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-dependency-plugin</artifactId>
37 <executions>
38 <execution>
39 <id>extract-docker-file</id>
Benjamin, Max2dbbd782020-06-02 23:18:13 -040040 <configuration>
41 <skip>false</skip>
42 </configuration>
Kuleshov, Elena833d2192020-01-10 09:53:29 -050043 </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>
Kuleshov, Elena6f10c952020-08-19 16:08:28 -040057 <artifactId>maven-jar-plugin</artifactId>
58 <executions>
59 <execution>
60 <id>original</id>
61 <phase>package</phase>
62 </execution>
63 </executions>
64 </plugin>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
Kuleshov, Elena833d2192020-01-10 09:53:29 -050067 <artifactId>maven-surefire-plugin</artifactId>
68 <executions>
69 <execution>
70 <id>default-test</id>
71 <goals>
72 <goal>test</goal>
73 </goals>
74 <configuration>
75 <includes>
76 <include>**/AllTestsTestSuite.java</include>
77 </includes>
78 <parallel>suites</parallel>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 </plugins>
84 <pluginManagement>
85 <plugins>
86 <!--This plugin's configuration is used to store Eclipse m2e settings
87 only. It has no influence on the Maven build itself. -->
88 <plugin>
89 <groupId>org.eclipse.m2e</groupId>
90 <artifactId>lifecycle-mapping</artifactId>
91 <version>1.0.0</version>
92 <configuration>
93 <lifecycleMappingMetadata>
94 <pluginExecutions>
95 <pluginExecution>
96 <pluginExecutionFilter>
Boslet, Coryf5c3da82020-05-20 11:39:21 -040097 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-dependency-plugin</artifactId>
99 <versionRange>[1.0.0,)</versionRange>
100 <goals>
101 <goal>unpack</goal>
102 </goals>
103 </pluginExecutionFilter>
104 <action>
105 <execute />
106 </action>
107 </pluginExecution>
108 <pluginExecution>
109 <pluginExecutionFilter>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500110 <groupId>
111 org.jvnet.jax-ws-commons
112 </groupId>
113 <artifactId>
114 jaxws-maven-plugin
115 </artifactId>
116 <versionRange>
117 [2.3,)
118 </versionRange>
119 <goals>
120 <goal>wsgen</goal>
121 </goals>
122 </pluginExecutionFilter>
123 <action>
124 <ignore>
125 </ignore>
126 </action>
127 </pluginExecution>
128 </pluginExecutions>
129 </lifecycleMappingMetadata>
130 </configuration>
131 </plugin>
132
133 <plugin>
134 <groupId>org.jacoco</groupId>
135 <artifactId>jacoco-maven-plugin</artifactId>
136 </plugin>
137 </plugins>
138 </pluginManagement>
139 <finalName>${project.artifactId}-${project.version}</finalName>
140 </build>
141 <dependencies>
142 <dependency>
143 <groupId>org.springframework.boot</groupId>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500144 <artifactId>spring-boot-starter-test</artifactId>
145 <scope>test</scope>
146 </dependency>
147 <dependency>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500148 <groupId>com.google.guava</groupId>
149 <artifactId>guava</artifactId>
150 </dependency>
151 <dependency>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500152 <groupId>org.camunda.bpm</groupId>
153 <artifactId>camunda-external-task-client</artifactId>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500154 </dependency>
155 <dependency>
156 <groupId>org.onap.so</groupId>
157 <artifactId>MSOCommonBPMN</artifactId>
158 <version>${project.version}</version>
159 </dependency>
160 <dependency>
161 <groupId>org.onap.appc.client</groupId>
162 <artifactId>client-lib</artifactId>
163 <version>${appc.client.version}</version>
164 <exclusions>
165 <exclusion>
166 <groupId>org.mockito</groupId>
167 <artifactId>mockito-core</artifactId>
168 </exclusion>
169 <exclusion>
170 <groupId>org.powermock</groupId>
171 <artifactId>powermock-module-junit4</artifactId>
172 </exclusion>
173 <exclusion>
174 <groupId>org.powermock</groupId>
175 <artifactId>powermock-api-mockito</artifactId>
176 </exclusion>
177 </exclusions>
178 </dependency>
179 <dependency>
180 <groupId>org.onap.so.adapters</groupId>
181 <artifactId>mso-adapter-utils</artifactId>
182 <version>${project.version}</version>
183 </dependency>
184 <dependency>
185 <groupId>org.onap.appc.client</groupId>
186 <artifactId>client-kit</artifactId>
187 <version>${appc.client.version}</version>
188 <exclusions>
189 <exclusion>
190 <groupId>org.mockito</groupId>
191 <artifactId>mockito-core</artifactId>
192 </exclusion>
193 </exclusions>
194 </dependency>
195 <!-- Test Dependencies -->
196 <dependency>
197 <groupId>pl.pragmatists</groupId>
198 <artifactId>JUnitParams</artifactId>
Kuleshov, Elena833d2192020-01-10 09:53:29 -0500199 <scope>test</scope>
200 </dependency>
201 <dependency>
202 <groupId>junit</groupId>
203 <artifactId>junit</artifactId>
204 <scope>test</scope>
205 </dependency>
206 </dependencies>
207</project>