Containerization feature of SO
[so.git] / asdc-controller / pom.xml
index 88bfa6c..8ab35ca 100644 (file)
        <parent>
                <groupId>org.onap.so</groupId>
                <artifactId>so</artifactId>
-               <version>1.2.0-SNAPSHOT</version>
-       </parent>
+               <version>1.3.0-SNAPSHOT</version>
+       </parent>                  
 
+       <groupId>org.onap.so</groupId>
        <artifactId>asdc-controller</artifactId>
        <name>asdc-controller</name>
        <description>ASDC CLient and Controller</description>
-       <packaging>war</packaging>
+       <properties>
+               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+               <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+               <antlr.version>4.7.1</antlr.version>
+               <java.version>1.8</java.version>
+       </properties>
 
        <build>
                <finalName>${project.artifactId}-${project.version}</finalName>
                <plugins>
                        <plugin>
-                               <artifactId>maven-war-plugin</artifactId>
-                               <version>2.4</version>
+                               <groupId>org.jacoco</groupId>
+                               <artifactId>jacoco-maven-plugin</artifactId>
+                               <version>0.7.7.201606060606</version>
+                                <configuration>
+                     <excludes>                        
++                        <exclude>**/resource-examples/**</exclude>
+                     </excludes>
+                 </configuration>
+                               <executions>
+                                       <execution>
+                                               <id>default-prepare-agent</id>
+                                               <goals>
+                                                       <goal>prepare-agent</goal>
+                                               </goals>
+                                       </execution>
+                                       <execution>
+                                               <id>default-report</id>
+                                               <goals>
+                                                       <goal>report</goal>
+                                               </goals>
+                                       </execution>
+                                       <execution>
+                                               <id>default-check</id>
+                                               <goals>
+                                                       <goal>check</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <rules>
+                                                               <rule implementation="org.jacoco.maven.RuleConfiguration">
+                                                                       <element>BUNDLE</element>
+                                                                       <limits>
+                                                                               <limit implementation="org.jacoco.report.check.Limit">
+                                                                                       <counter>INSTRUCTION</counter>
+                                                                                       <value>COVEREDRATIO</value>                                                                                     
+                                                                               </limit>
+                                                                       </limits>
+                                                               </rule>
+                                                       </rules>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.antlr</groupId>
+                               <artifactId>antlr4-maven-plugin</artifactId>
+                               <version>${antlr.version}</version>
+                               <executions>
+                                       <execution>
+                                               <id>antlr</id>
+                                               <phase>generate-test-resources</phase>
+                                               <goals>
+                                                       <goal>antlr4</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <visitor>true</visitor>
+                                                       <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>default-testCompile</id>
+                                               <phase>test-compile</phase>
+                                               <goals>
+                                                       <goal>testCompile</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <generatedTestSourcesDirectory>${project.build.directory}/generated-sources</generatedTestSourcesDirectory>
+                                               </configuration>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.springframework.boot</groupId>
+                               <artifactId>spring-boot-maven-plugin</artifactId>
                                <configuration>
-                                       <warSourceDirectory>WebContent</warSourceDirectory>
-                                       <failOnMissingWebXml>false</failOnMissingWebXml>
-                                       <attachClasses>true</attachClasses>
-                               </configuration>
+                    <mainClass>org.onap.so.asdc.Application</mainClass>
+                </configuration>
+                               <executions>
+                                       <execution>
+                                               <goals>
+                                                       <goal>repackage</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-dependency-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>extract-docker-file</id>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>io.fabric8</groupId>
+                               <artifactId>fabric8-maven-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>start</id>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-jar-plugin</artifactId>
+                               <executions>                                    
+                                       <execution>
+                                               <id>original</id>
+                                       </execution>
+                               </executions>
                        </plugin>
                </plugins>
        </build>
-
        <dependencies>
-               <dependency>
-                       <groupId>org.jmockit</groupId>
-                       <artifactId>jmockit</artifactId>
-                       <version>1.8</version>
-                       <scope>test</scope>
-               </dependency>  
                <dependency>
-                       <groupId>org.onap.so</groupId>
-                       <artifactId>mso-catalog-db</artifactId>
-                       <version>${project.version}</version>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-web</artifactId>
                </dependency>
-
                <dependency>
-                       <groupId>org.jboss.spec.javax.ejb</groupId>
-                       <artifactId>jboss-ejb-api_3.2_spec</artifactId>
-                       <version>1.0.0.Final</version>
-                       <scope>provided</scope>
+                       <groupId>io.swagger</groupId>
+                       <artifactId>swagger-jersey2-jaxrs</artifactId>
+                       <version>1.5.16</version>
                </dependency>
                <dependency>
-                       <groupId>org.jboss.ejb3</groupId>
-                       <artifactId>jboss-ejb3-ext-api</artifactId>
-                       <version>2.2.0.Final</version>
-                       <scope>provided</scope>
+                       <groupId>com.h2database</groupId>
+                       <artifactId>h2</artifactId>
                </dependency>
-
                <dependency>
-                               <groupId>javax.servlet</groupId>
-                               <artifactId>javax.servlet-api</artifactId>
-                               <version>3.1.0</version>
-                               <scope>test</scope>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-actuator</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-jersey</artifactId>
                </dependency>
-
                <dependency>
-                               <groupId>org.apache.httpcomponents</groupId>
-                               <artifactId>httpclient</artifactId>
-                               <scope>compile</scope>
-                               <exclusions>
-                                       <exclusion>  
-                                       <groupId>org.apache.httpcomponents</groupId>
-                                       <artifactId>httpclient</artifactId>
-                                       </exclusion>
-                       </exclusions>
-               </dependency>
-               
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-data-jpa</artifactId>
+                       <exclusions>
+                               <exclusion>
+                                       <groupId>org.apache.tomcat</groupId>
+                                       <artifactId>tomcat-jdbc</artifactId>
+                               </exclusion>
+                       </exclusions>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-starter-test</artifactId>
+                       <scope>test</scope>
+               </dependency>   
+               <dependency>
+                       <groupId>org.onap.so</groupId>
+                       <artifactId>mso-catalog-db</artifactId>
+                       <version>${project.version}</version>
+               </dependency>
                <dependency>
                        <groupId>org.onap.sdc.sdc-distribution-client</groupId>
                        <artifactId>sdc-distribution-client</artifactId>
                                </exclusion>
          </exclusions>
                </dependency>
-
                <dependency>
                        <groupId>org.onap.sdc.sdc-tosca</groupId>
-                       <artifactId>sdc-tosca</artifactId>
-                       <version>1.3.0</version>
+                       <artifactId>sdc-tosca</artifactId>
+                       <version>1.3.4-SNAPSHOT</version>
                </dependency> 
-
                <dependency>
-                   <groupId>org.apache.httpcomponents</groupId>
-                   <artifactId>httpmime</artifactId>
-                   <version>4.5</version>
-               </dependency>
-
+                       <groupId>org.onap.sdc.jtosca</groupId>
+                       <artifactId>jtosca</artifactId>
+                       <version>1.3.4-SNAPSHOT</version>
+               </dependency> 
                <dependency>
                        <groupId>org.onap.so</groupId>
                        <artifactId>common</artifactId>
                        <version>${project.version}</version>
                </dependency>
-
-               <dependency>
-                       <groupId>org.yaml</groupId>
-                       <artifactId>snakeyaml</artifactId>
-                       <version>1.15</version>
-               </dependency>
-
-               <dependency>
-                       <groupId>javax</groupId>
-                       <artifactId>javaee-web-api</artifactId>
-                       <version>6.0</version>
-                       <scope>provided</scope>
-               </dependency>
                <dependency>
                        <groupId>org.onap.so</groupId>
-                       <artifactId>status-control</artifactId>
+                       <artifactId>mso-api-handler-common</artifactId>
                        <version>${project.version}</version>
                </dependency>
                <dependency>
                        <artifactId>mso-requests-db</artifactId>
                        <version>${project.version}</version>
                </dependency>
+               <dependency>
+               <groupId>janino</groupId>
+               <artifactId>janino</artifactId>
+               <version>2.5.15</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.antlr</groupId>
+                       <artifactId>antlr4</artifactId>
+                       <version>${antlr.version}</version>
+                       <scope>test</scope>
+                       </dependency>
+               <dependency>
+                       <groupId>org.springframework.boot</groupId>
+                       <artifactId>spring-boot-configuration-processor</artifactId>
+                       <optional>true</optional>
+               </dependency>
+               <dependency>
+                       <groupId>org.mariadb.jdbc</groupId>
+                       <artifactId>mariadb-java-client</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.commons</groupId>
+                       <artifactId>commons-dbcp2</artifactId>
+               </dependency>
+               <dependency>
+            <groupId>ch.vorburger.mariaDB4j</groupId>
+            <artifactId>mariaDB4j</artifactId>
+            <version>2.2.3</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+                       <groupId>org.springframework.cloud</groupId>
+                       <artifactId>spring-cloud-contract-wiremock</artifactId>
+                       <version>1.2.4.RELEASE</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>