blob: 8e94db1aa01755a12ceb457ed730c22f00764c0e [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"
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>
Arthur Martella22e015f2018-02-22 14:24:40 -05005 <groupId>org.onap.so</groupId>
ChrisC025301d2017-01-31 11:40:03 +01006 <artifactId>adapters</artifactId>
Rob Daugherty325d4e22018-10-19 15:13:38 -04007 <version>1.4.0-SNAPSHOT</version>
ChrisC025301d2017-01-31 11:40:03 +01008 </parent>
ChrisC025301d2017-01-31 11:40:03 +01009 <artifactId>mso-sdnc-adapter</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040010 <properties>
11 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13 </properties>
ChrisC025301d2017-01-31 11:40:03 +010014 <name>mso-sdnc-adapter</name>
15 <description>mso sdnc adapter</description>
16
17 <build>
18 <finalName>${project.artifactId}-${project.version}</finalName>
19 <plugins>
ChrisC025301d2017-01-31 11:40:03 +010020 <plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040021 <groupId>org.apache.cxf</groupId>
22 <artifactId>cxf-codegen-plugin</artifactId>
23 <version>2.5.2</version>
ChrisC025301d2017-01-31 11:40:03 +010024 </plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040025 <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>
45 </execution>
46 </executions>
47 </plugin>
48 <plugin>
49 <groupId>org.jacoco</groupId>
50 <artifactId>jacoco-maven-plugin</artifactId>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-dependency-plugin</artifactId>
55 <executions>
56 <execution>
57 <id>extract-docker-file</id>
58 </execution>
59 </executions>
60 </plugin>
61 <plugin>
62 <groupId>io.fabric8</groupId>
63 <artifactId>fabric8-maven-plugin</artifactId>
64 <executions>
65 <execution>
66 <id>start</id>
67 </execution>
68 </executions>
69 </plugin>
ChrisC025301d2017-01-31 11:40:03 +010070 </plugins>
71 </build>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040072 <dependencyManagement>
73 <dependencies>
74 <dependency>
75 <!-- Import dependency management from Spring Boot -->
76 <groupId>org.springframework.boot</groupId>
77 <artifactId>spring-boot-dependencies</artifactId>
78 <version>${springboot.version}</version>
79 <type>pom</type>
80 <scope>import</scope>
81 </dependency>
82 </dependencies>
83 </dependencyManagement>
84
ChrisC025301d2017-01-31 11:40:03 +010085 <dependencies>
86 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040087 <groupId>org.springframework.boot</groupId>
88 <artifactId>spring-boot-starter-web</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>io.swagger</groupId>
92 <artifactId>swagger-jersey2-jaxrs</artifactId>
93 <version>1.5.16</version>
94 </dependency>
95 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040096 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-starter-actuator</artifactId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -040098 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040099 <dependency>
100 <groupId>org.springframework.boot</groupId>
101 <artifactId>spring-boot-starter-test</artifactId>
102 <scope>test</scope>
103 </dependency>
104 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500105 <groupId>org.onap.so.adapters</groupId>
ChrisC025301d2017-01-31 11:40:03 +0100106 <artifactId>mso-adapter-utils</artifactId>
107 <version>${project.version}</version>
ChrisC025301d2017-01-31 11:40:03 +0100108 </dependency>
109 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400110 <groupId>org.apache.cxf</groupId>
111 <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400112 <version>${cxf.version}</version>
ChrisC025301d2017-01-31 11:40:03 +0100113 </dependency>
114 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400115 <groupId>org.apache.cxf</groupId>
116 <artifactId>cxf-spring-boot-starter-jaxrs</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400117 <version>${cxf.version}</version>
ChrisC025301d2017-01-31 11:40:03 +0100118 </dependency>
119 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400120 <groupId>org.apache.cxf</groupId>
121 <artifactId>cxf-rt-rs-service-description-swagger</artifactId>
Smokowski, Steve (ss835w)ffa1f2e2018-08-07 08:37:49 -0400122 <version>${cxf.version}</version>
ChrisC025301d2017-01-31 11:40:03 +0100123 </dependency>
124 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400125 <groupId>org.springframework.boot</groupId>
126 <artifactId>spring-boot-configuration-processor</artifactId>
127 <optional>true</optional>
128 </dependency>
129 <dependency>
130 <groupId>org.onap.so.adapters</groupId>
131 <artifactId>mso-adapters-rest-interface</artifactId>
ChrisC025301d2017-01-31 11:40:03 +0100132 <version>${project.version}</version>
133 </dependency>
xg353yb6b7bef2017-04-11 13:30:42 +0200134 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400135 <groupId>org.glassfish</groupId>
136 <artifactId>javax.json</artifactId>
137 <version>1.0.4</version>
138 <scope>test</scope>
139 </dependency>
140 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400141 <groupId>io.micrometer</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400142 <artifactId>micrometer-core</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400143 </dependency>
144 <dependency>
145 <groupId>io.micrometer</groupId>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -0400146 <artifactId>micrometer-registry-prometheus</artifactId>
xg353yb6b7bef2017-04-11 13:30:42 +0200147 </dependency>
Smokowski, Steve (ss835w)e2c77492018-09-04 15:31:38 -0400148 <dependency>
149 <groupId>org.onap.so</groupId>
150 <artifactId>cxf-logging</artifactId>
151 <version>${project.version}</version>
152 </dependency>
ChrisC025301d2017-01-31 11:40:03 +0100153 </dependencies>
Rob Daugherty325d4e22018-10-19 15:13:38 -0400154</project>