blob: f54c2ec568e484dc25e00884a65d9d0e10d68dab [file] [log] [blame]
ChrisC025301d2017-01-31 11:40:03 +01001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04002 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>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04008 </parent>
9 <artifactId>mso-sdnc-adapter</artifactId>
10 <properties>
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13 </properties>
14 <name>mso-sdnc-adapter</name>
15 <description>mso sdnc adapter</description>
ChrisC025301d2017-01-31 11:40:03 +010016
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040017 <build>
18 <finalName>${project.artifactId}-${project.version}</finalName>
Boslet, Coryf5c3da82020-05-20 11:39:21 -040019 <pluginManagement>
20 <plugins>
21 <plugin>
22 <groupId>org.eclipse.m2e</groupId>
23 <artifactId>lifecycle-mapping</artifactId>
24 <version>1.0.0</version>
25 <configuration>
26 <lifecycleMappingMetadata>
27 <pluginExecutions>
28 <pluginExecution>
29 <pluginExecutionFilter>
30 <groupId>org.apache.maven.plugins</groupId>
31 <artifactId>maven-dependency-plugin</artifactId>
32 <versionRange>[1.0.0,)</versionRange>
33 <goals>
34 <goal>unpack</goal>
35 </goals>
36 </pluginExecutionFilter>
37 <action>
38 <execute />
39 </action>
40 </pluginExecution>
41 </pluginExecutions>
42 </lifecycleMappingMetadata>
43 </configuration>
44 </plugin>
45 </plugins>
46 </pluginManagement>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040047 <plugins>
48 <plugin>
49 <groupId>org.apache.cxf</groupId>
50 <artifactId>cxf-codegen-plugin</artifactId>
51 <version>2.5.2</version>
52 </plugin>
53 <plugin>
54 <groupId>org.springframework.boot</groupId>
55 <artifactId>spring-boot-maven-plugin</artifactId>
56 <configuration>
57 <mainClass>org.onap.so.adapters.sdnc.SDNCAdapterApplication</mainClass>
58 </configuration>
59 <executions>
60 <execution>
61 <goals>
62 <goal>repackage</goal>
63 </goals>
64 </execution>
65 </executions>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-jar-plugin</artifactId>
70 <executions>
71 <execution>
72 <id>original</id>
Benjamin, Max7e372112019-11-08 10:32:10 -050073 <configuration>
74 <skip>false</skip>
75 </configuration>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040076 </execution>
77 </executions>
78 </plugin>
79 <plugin>
80 <groupId>org.jacoco</groupId>
81 <artifactId>jacoco-maven-plugin</artifactId>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-dependency-plugin</artifactId>
86 <executions>
87 <execution>
88 <id>extract-docker-file</id>
89 </execution>
90 </executions>
91 </plugin>
92 <plugin>
93 <groupId>io.fabric8</groupId>
Benjamin, Max5f57d092020-05-13 17:48:03 -040094 <artifactId>docker-maven-plugin</artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040095 <executions>
96 <execution>
97 <id>start</id>
98 </execution>
99 </executions>
100 </plugin>
101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-surefire-plugin</artifactId>
104 <executions>
105 <execution>
106 <id>default-test</id>
107 <goals>
108 <goal>test</goal>
109 </goals>
110 <configuration>
111 <includes>
112 <include>**/AllTestsTestSuite.java</include>
113 </includes>
114 <parallel>suites</parallel>
115 </configuration>
116 </execution>
117 </executions>
118 </plugin>
119 </plugins>
120 </build>
121 <dependencyManagement>
122 <dependencies>
123 <dependency>
124 <!-- Import dependency management from Spring Boot -->
125 <groupId>org.springframework.boot</groupId>
126 <artifactId>spring-boot-dependencies</artifactId>
127 <version>${springboot.version}</version>
128 <type>pom</type>
129 <scope>import</scope>
130 </dependency>
131 </dependencies>
132 </dependencyManagement>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400133
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400134 <dependencies>
135 <dependency>
136 <groupId>org.springframework.boot</groupId>
137 <artifactId>spring-boot-starter-web</artifactId>
138 </dependency>
139 <dependency>
140 <groupId>io.swagger</groupId>
141 <artifactId>swagger-jersey2-jaxrs</artifactId>
142 <version>1.5.16</version>
143 </dependency>
144 <dependency>
145 <groupId>org.springframework.boot</groupId>
146 <artifactId>spring-boot-starter-actuator</artifactId>
147 </dependency>
148 <dependency>
149 <groupId>org.springframework.boot</groupId>
150 <artifactId>spring-boot-starter-test</artifactId>
151 <scope>test</scope>
152 </dependency>
153 <dependency>
154 <groupId>org.onap.so.adapters</groupId>
155 <artifactId>mso-adapter-utils</artifactId>
156 <version>${project.version}</version>
157 </dependency>
158 <dependency>
159 <groupId>org.apache.cxf</groupId>
160 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
161 <version>${cxf.version}</version>
162 </dependency>
163 <dependency>
164 <groupId>org.apache.cxf</groupId>
165 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
166 <version>${cxf.version}</version>
167 </dependency>
168 <dependency>
169 <groupId>org.apache.cxf</groupId>
170 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
171 <version>${cxf.version}</version>
172 </dependency>
173 <dependency>
174 <groupId>org.springframework.boot</groupId>
175 <artifactId>spring-boot-configuration-processor</artifactId>
176 <optional>true</optional>
177 </dependency>
178 <dependency>
179 <groupId>org.onap.so.adapters</groupId>
180 <artifactId>mso-adapters-rest-interface</artifactId>
181 <version>${project.version}</version>
182 </dependency>
183 <dependency>
184 <groupId>org.glassfish</groupId>
185 <artifactId>javax.json</artifactId>
186 <version>1.0.4</version>
187 <scope>test</scope>
188 </dependency>
189 <dependency>
190 <groupId>io.micrometer</groupId>
191 <artifactId>micrometer-core</artifactId>
192 </dependency>
193 <dependency>
194 <groupId>io.micrometer</groupId>
195 <artifactId>micrometer-registry-prometheus</artifactId>
196 </dependency>
197 <dependency>
198 <groupId>org.onap.so</groupId>
199 <artifactId>cxf-logging</artifactId>
200 <version>${project.version}</version>
201 </dependency>
202 </dependencies>
Rob Daugherty325d4e22018-10-19 15:13:38 -0400203</project>