blob: 6fbfb810ec4041a3a998d622a27c13284a067976 [file] [log] [blame]
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +08001<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>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +08006 <artifactId>adapters</artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 <version>1.3.0-SNAPSHOT</version>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +08008 </parent>
Arthur Martella22e015f2018-02-22 14:24:40 -05009 <groupId>org.onap.so.adapters</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080010 <artifactId>mso-vfc-adapter</artifactId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080011 <name>mso-vfc-adapter</name>
12 <description>Web service endpoint for vfc operations</description>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040013 <dependencyManagement>
14 <dependencies>
15 <dependency>
16 <groupId>org.springframework.boot</groupId>
17 <artifactId>spring-boot-dependencies</artifactId>
18 <version>${springboot.version}</version>
19 <type>pom</type>
20 <scope>import</scope>
21 </dependency>
22 </dependencies>
23 </dependencyManagement>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080024 <build>
25 <finalName>${project.artifactId}-${project.version}</finalName>
26 <plugins>
27 <plugin>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040028 <groupId>org.springframework.boot</groupId>
29 <artifactId>spring-boot-maven-plugin</artifactId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080030 <configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040031 <mainClass>org.onap.so.adapters.vfc.application.MSOVfcApplication</mainClass>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080032 </configuration>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040033 <executions>
34 <execution>
35 <goals>
36 <goal>repackage</goal>
37 </goals>
38 </execution>
39 </executions>
40 </plugin>
41 <plugin>
42 <groupId>org.jacoco</groupId>
43 <artifactId>jacoco-maven-plugin</artifactId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080044 </plugin>
45 </plugins>
46 </build>
47 <dependencies>
48 <!--<dependency> <groupId>javax</groupId> <artifactId>javaee-web-api</artifactId>
49 <version>6.0</version> <scope>provided</scope> </dependency> -->
50 <dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040051 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-actuator</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>org.springframework.boot</groupId>
56 <artifactId>spring-boot-starter-web</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework.boot</groupId>
60 <artifactId>spring-boot-starter-data-jpa</artifactId>
61 <optional>true</optional>
62 </dependency>
63 <dependency>
64 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-test</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework.boot</groupId>
70 <artifactId>spring-boot-starter-jersey</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>com.h2database</groupId>
74 <artifactId>h2</artifactId>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.webjars</groupId>
79 <artifactId>swagger-ui</artifactId>
80 <version>3.5.0</version>
81 </dependency>
82 <dependency>
83 <groupId>io.swagger</groupId>
84 <artifactId>swagger-jersey2-jaxrs</artifactId>
85 <version>1.5.16</version>
86 </dependency>
87 <dependency>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080088 <groupId>javax.ws.rs</groupId>
89 <artifactId>javax.ws.rs-api</artifactId>
90 <version>2.0</version>
91 </dependency>
92 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050093 <groupId>org.onap.so.adapters</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080094 <artifactId>mso-adapter-utils</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -050098 <groupId>org.onap.so.adapters</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +080099 <artifactId>mso-adapters-rest-interface</artifactId>
100 <version>${project.version}</version>
101 </dependency>
102 <dependency>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +0800103 <groupId>javax.servlet</groupId>
104 <artifactId>javax.servlet-api</artifactId>
105 <version>3.1.0</version>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.jboss.spec.javax.ejb</groupId>
110 <artifactId>jboss-ejb-api_3.2_spec</artifactId>
111 <version>1.0.0.Final</version>
112 <scope>provided</scope>
113 </dependency>
114 <dependency>
115 <groupId>org.jboss.ejb3</groupId>
116 <artifactId>jboss-ejb3-ext-api</artifactId>
117 <version>2.2.0.Final</version>
118 <scope>provided</scope>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400119 </dependency>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +0800120 <dependency>
Arthur Martella22e015f2018-02-22 14:24:40 -0500121 <groupId>org.onap.so</groupId>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +0800122 <artifactId>mso-requests-db</artifactId>
123 <version>${project.version}</version>
124 </dependency>
125 <dependency>
126 <groupId>commons-io</groupId>
127 <artifactId>commons-io</artifactId>
128 </dependency>
129 <dependency>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +0800130 <groupId>javax.servlet</groupId>
131 <artifactId>javax.servlet-api</artifactId>
132 <version>3.1.0</version>
133 </dependency>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400134 <dependency>
135 <groupId>io.micrometer</groupId>
136 <artifactId>micrometer-spring-legacy</artifactId>
137 <version>1.0.5</version>
138 </dependency>
139 <dependency>
140 <groupId>io.micrometer</groupId>
141 <artifactId>micrometer-registry-prometheus</artifactId>
142 <version>1.0.5</version>
143 </dependency>
Seshu-Kumar-Mf8696082017-10-11 20:39:35 +0800144 </dependencies>
c0014910726b7c9d2017-08-31 14:27:38 +0800145</project>