1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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>
6 <groupId>org.onap.sdnc.oam</groupId>
7 <artifactId>SdncReports</artifactId>
8 <version>2.0.1-SNAPSHOT</version>
11 <groupId>org.onap.sdnc.oam</groupId>
12 <artifactId>SdncReportsApi</artifactId>
13 <version>2.0.1-SNAPSHOT</version>
14 <packaging>jar</packaging>
16 <name>sdnc-oam :: SdncReports :: SdncReportsApi</name>
19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
21 <java.version>1.8</java.version>
27 <groupId>ch.vorburger.mariaDB4j</groupId>
28 <artifactId>mariaDB4j</artifactId>
29 <version>2.2.3</version>
32 <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
34 <groupId>com.google.code.gson</groupId>
35 <artifactId>gson</artifactId>
36 <version>2.8.2</version>
40 <groupId>${project.groupId}</groupId>
41 <artifactId>SdncReportsDao</artifactId>
42 <version>${project.version}</version>
46 <groupId>org.mariadb.jdbc</groupId>
47 <artifactId>mariadb-java-client</artifactId>
48 <version>1.1.9</version>
52 <groupId>org.springframework.boot</groupId>
53 <artifactId>spring-boot-starter-web</artifactId>
54 <version>1.5.4.RELEASE</version>
58 <groupId>org.springframework</groupId>
59 <artifactId>spring-context</artifactId>
60 <version>4.3.9.RELEASE</version>
64 <groupId>org.springframework.boot</groupId>
65 <artifactId>spring-boot-starter-tomcat</artifactId>
66 <scope>provided</scope>
70 <groupId>org.apache.tomcat.embed</groupId>
71 <artifactId>tomcat-embed-jasper</artifactId>
72 <scope>provided</scope>
77 <groupId>org.springframework.boot</groupId>
78 <artifactId>spring-boot-devtools</artifactId>
79 <optional>true</optional>
83 <groupId>org.springframework.boot</groupId>
84 <artifactId>spring-boot-starter-test</artifactId>
85 <version>1.5.3.RELEASE</version>
90 <groupId>org.springframework.boot</groupId>
91 <artifactId>spring-boot-starter-data-jpa</artifactId>
94 <!-- Add Log4j2 Dependency -->
96 <groupId>org.springframework.boot</groupId>
97 <artifactId>spring-boot-starter-log4j2</artifactId>
100 <!-- Add Web jars, instead of dist folder -->
102 <groupId>org.webjars</groupId>
103 <artifactId>bootstrap</artifactId>
104 <version>3.3.7</version>
108 <groupId>org.webjars</groupId>
109 <artifactId>bootstrap-datepicker</artifactId>
110 <version>1.0.1</version>
119 <groupId>org.springframework.boot</groupId>
120 <artifactId>spring-boot-maven-plugin</artifactId>
122 <executable>true</executable>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-surefire-plugin</artifactId>
130 <skipTests>true</skipTests>
135 <groupId>org.jacoco</groupId>
136 <artifactId>jacoco-maven-plugin</artifactId>
137 <version>0.7.5.201505241946</version>
140 <id>pre-unit-test</id>
142 <goal>prepare-agent</goal>
145 <!-- Sets the path to the file which contains the execution data. -->
146 <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
147 <!-- Sets the name of the property containing the settings for JaCoCo
149 <propertyName>surefireArgLine</propertyName>
154 <id>post-unit-test</id>
160 <!-- Sets the path to the file which contains the execution data. -->
161 <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
162 <!-- Sets the output directory for the code coverage report. -->
163 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
170 <groupId>io.fabric8</groupId>
171 <artifactId>docker-maven-plugin</artifactId>
172 <version>0.15.3</version>
174 <dockerHost>http://127.0.0.1:9092</dockerHost>
175 <verbose>true</verbose>
178 <name>vishal/sdnc_report</name>
180 <dockerFile>Dockerfile</dockerFile>
182 <descriptorRef>artifact</descriptorRef>