blob: 7fd1aa62d45881f943e20f73de74565c37f2c47e [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>
19 <plugins>
20 <plugin>
21 <groupId>org.apache.cxf</groupId>
22 <artifactId>cxf-codegen-plugin</artifactId>
23 <version>2.5.2</version>
24 </plugin>
25 <plugin>
26 <groupId>org.springframework.boot</groupId>
27 <artifactId>spring-boot-maven-plugin</artifactId>
28 <configuration>
29 <mainClass>org.onap.so.adapters.sdnc.SDNCAdapterApplication</mainClass>
30 </configuration>
31 <executions>
32 <execution>
33 <goals>
34 <goal>repackage</goal>
35 </goals>
36 </execution>
37 </executions>
38 </plugin>
39 <plugin>
40 <groupId>org.apache.maven.plugins</groupId>
41 <artifactId>maven-jar-plugin</artifactId>
42 <executions>
43 <execution>
44 <id>original</id>
Benjamin, Max7e372112019-11-08 10:32:10 -050045 <configuration>
46 <skip>false</skip>
47 </configuration>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040048 </execution>
49 </executions>
50 </plugin>
51 <plugin>
52 <groupId>org.jacoco</groupId>
53 <artifactId>jacoco-maven-plugin</artifactId>
54 </plugin>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-dependency-plugin</artifactId>
58 <executions>
59 <execution>
60 <id>extract-docker-file</id>
61 </execution>
62 </executions>
63 </plugin>
64 <plugin>
65 <groupId>io.fabric8</groupId>
66 <artifactId>fabric8-maven-plugin</artifactId>
67 <executions>
68 <execution>
69 <id>start</id>
70 </execution>
71 </executions>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-surefire-plugin</artifactId>
76 <executions>
77 <execution>
78 <id>default-test</id>
79 <goals>
80 <goal>test</goal>
81 </goals>
82 <configuration>
83 <includes>
84 <include>**/AllTestsTestSuite.java</include>
85 </includes>
86 <parallel>suites</parallel>
87 </configuration>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
92 </build>
93 <dependencyManagement>
94 <dependencies>
95 <dependency>
96 <!-- Import dependency management from Spring Boot -->
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-dependencies</artifactId>
99 <version>${springboot.version}</version>
100 <type>pom</type>
101 <scope>import</scope>
102 </dependency>
103 </dependencies>
104 </dependencyManagement>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400105
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400106 <dependencies>
107 <dependency>
108 <groupId>org.springframework.boot</groupId>
109 <artifactId>spring-boot-starter-web</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>io.swagger</groupId>
113 <artifactId>swagger-jersey2-jaxrs</artifactId>
114 <version>1.5.16</version>
115 </dependency>
116 <dependency>
117 <groupId>org.springframework.boot</groupId>
118 <artifactId>spring-boot-starter-actuator</artifactId>
119 </dependency>
120 <dependency>
121 <groupId>org.springframework.boot</groupId>
122 <artifactId>spring-boot-starter-test</artifactId>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.onap.so.adapters</groupId>
127 <artifactId>mso-adapter-utils</artifactId>
128 <version>${project.version}</version>
129 </dependency>
130 <dependency>
131 <groupId>org.apache.cxf</groupId>
132 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
133 <version>${cxf.version}</version>
134 </dependency>
135 <dependency>
136 <groupId>org.apache.cxf</groupId>
137 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
138 <version>${cxf.version}</version>
139 </dependency>
140 <dependency>
141 <groupId>org.apache.cxf</groupId>
142 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
143 <version>${cxf.version}</version>
144 </dependency>
145 <dependency>
146 <groupId>org.springframework.boot</groupId>
147 <artifactId>spring-boot-configuration-processor</artifactId>
148 <optional>true</optional>
149 </dependency>
150 <dependency>
151 <groupId>org.onap.so.adapters</groupId>
152 <artifactId>mso-adapters-rest-interface</artifactId>
153 <version>${project.version}</version>
154 </dependency>
155 <dependency>
156 <groupId>org.glassfish</groupId>
157 <artifactId>javax.json</artifactId>
158 <version>1.0.4</version>
159 <scope>test</scope>
160 </dependency>
161 <dependency>
162 <groupId>io.micrometer</groupId>
163 <artifactId>micrometer-core</artifactId>
164 </dependency>
165 <dependency>
166 <groupId>io.micrometer</groupId>
167 <artifactId>micrometer-registry-prometheus</artifactId>
168 </dependency>
169 <dependency>
170 <groupId>org.onap.so</groupId>
171 <artifactId>cxf-logging</artifactId>
172 <version>${project.version}</version>
173 </dependency>
174 </dependencies>
Rob Daugherty325d4e22018-10-19 15:13:38 -0400175</project>