Containerization feature of SO
[so.git] / adapters / mso-vfc-adapter / pom.xml
index f45133c..6fbfb81 100644 (file)
@@ -4,34 +4,86 @@
        <parent>
                <groupId>org.onap.so</groupId>
                <artifactId>adapters</artifactId>
-               <version>1.2.0-SNAPSHOT</version>
+               <version>1.3.0-SNAPSHOT</version>
        </parent>
        <groupId>org.onap.so.adapters</groupId>
        <artifactId>mso-vfc-adapter</artifactId>
-       <packaging>war</packaging>
        <name>mso-vfc-adapter</name>
        <description>Web service endpoint for vfc operations</description>
-       <!-- <properties> -->
-       <!-- <project.build.sourceEncoding/> -->
-       <!-- <project.reporting.outputEncoding/> -->
-       <!-- </properties> -->
+       <dependencyManagement>
+               <dependencies>
+                       <dependency>
+                               <groupId>org.springframework.boot</groupId>
+                               <artifactId>spring-boot-dependencies</artifactId>
+                               <version>${springboot.version}</version>
+                               <type>pom</type>
+                               <scope>import</scope>
+                       </dependency>
+               </dependencies>
+       </dependencyManagement>
        <build>
                <finalName>${project.artifactId}-${project.version}</finalName>
                <plugins>
                        <plugin>
-                               <artifactId>maven-war-plugin</artifactId>
-                               <version>2.4</version>
+                               <groupId>org.springframework.boot</groupId>
+                               <artifactId>spring-boot-maven-plugin</artifactId>
                                <configuration>
-                                       <warSourceDirectory>WebContent</warSourceDirectory>
-                                       <failOnMissingWebXml>false</failOnMissingWebXml>
-                                       <attachClasses>true</attachClasses>
+                                       <mainClass>org.onap.so.adapters.vfc.application.MSOVfcApplication</mainClass>
                                </configuration>
+                               <executions>
+                                       <execution>
+                                               <goals>
+                                                       <goal>repackage</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.jacoco</groupId>
+                               <artifactId>jacoco-maven-plugin</artifactId>
                        </plugin>
                </plugins>
        </build>
        <dependencies>
                <!--<dependency> <groupId>javax</groupId> <artifactId>javaee-web-api</artifactId> 
                        <version>6.0</version> <scope>provided</scope> </dependency> -->
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-actuator</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-web</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-data-jpa</artifactId>
+                       <optional>true</optional>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-test</artifactId>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-jersey</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>com.h2database</groupId>
+                       <artifactId>h2</artifactId>
+                       <scope>test</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.webjars</groupId>
+                       <artifactId>swagger-ui</artifactId>
+                       <version>3.5.0</version>
+               </dependency>
+               <dependency>
+                       <groupId>io.swagger</groupId>
+                       <artifactId>swagger-jersey2-jaxrs</artifactId>
+                       <version>1.5.16</version>
+               </dependency>
                <dependency>
                        <groupId>javax.ws.rs</groupId>
                        <artifactId>javax.ws.rs-api</artifactId>
                        <artifactId>jboss-ejb3-ext-api</artifactId>
                        <version>2.2.0.Final</version>
                        <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.onap.so</groupId>
-                       <artifactId>status-control</artifactId>
-                       <version>${project.version}</version>
-               </dependency>
+               </dependency>           
                <dependency>
                        <groupId>org.onap.so</groupId>
                        <artifactId>mso-requests-db</artifactId>
                        <groupId>commons-io</groupId>
                        <artifactId>commons-io</artifactId>
                </dependency>
-               <dependency>
-                       <groupId>org.glassfish.jersey.core</groupId>
-                       <artifactId>jersey-common</artifactId>
-                       <version>2.22.2</version>
-                       <scope>test</scope>
-               </dependency>
                <dependency>
                        <groupId>javax.servlet</groupId>
                        <artifactId>javax.servlet-api</artifactId>
                        <version>3.1.0</version>
                </dependency>
+               <dependency>
+                       <groupId>io.micrometer</groupId>
+                       <artifactId>micrometer-spring-legacy</artifactId>
+                       <version>1.0.5</version>
+               </dependency>
+               <dependency>
+                       <groupId>io.micrometer</groupId>
+                       <artifactId>micrometer-registry-prometheus</artifactId>
+                       <version>1.0.5</version>
+               </dependency>
        </dependencies>
 </project>