blob: b4641af8c39bfdf6ad62792570344b9936120ac5 [file] [log] [blame]
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -05001<?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">
Dan Timoneyf20174d2020-08-10 14:09:14 -04003 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.sdnc.oam</groupId>
7 <artifactId>SdncReports</artifactId>
Hesam Rahimi55378e72021-06-07 20:02:32 +00008 <version>2.2.0-SNAPSHOT</version>
Dan Timoneyf20174d2020-08-10 14:09:14 -04009 </parent>
10
Dan Timoneyf20174d2020-08-10 14:09:14 -040011 <artifactId>SdncReportsApi</artifactId>
Dan Timoneyf20174d2020-08-10 14:09:14 -040012 <packaging>jar</packaging>
13
14 <name>sdnc-oam :: SdncReports :: SdncReportsApi</name>
15
16 <properties>
17 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
19 <java.version>1.8</java.version>
20 </properties>
21
22 <dependencies>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -040023
Dan Timoneyf20174d2020-08-10 14:09:14 -040024 <dependency>
25 <groupId>ch.vorburger.mariaDB4j</groupId>
26 <artifactId>mariaDB4j</artifactId>
27 <version>2.2.3</version>
28 </dependency>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -040029
Dan Timoneyf20174d2020-08-10 14:09:14 -040030 <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
31 <dependency>
32 <groupId>com.google.code.gson</groupId>
33 <artifactId>gson</artifactId>
34 <version>2.8.2</version>
35 </dependency>
36
37 <dependency>
38 <groupId>${project.groupId}</groupId>
39 <artifactId>SdncReportsDao</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42
43 <dependency>
44 <groupId>org.mariadb.jdbc</groupId>
45 <artifactId>mariadb-java-client</artifactId>
46 <version>1.1.9</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.springframework.boot</groupId>
51 <artifactId>spring-boot-starter-web</artifactId>
52 <version>1.5.4.RELEASE</version>
53 </dependency>
54
55 <dependency>
56 <groupId>org.springframework</groupId>
57 <artifactId>spring-context</artifactId>
58 <version>4.3.9.RELEASE</version>
59 </dependency>
60
61 <dependency>
62 <groupId>org.springframework.boot</groupId>
63 <artifactId>spring-boot-starter-tomcat</artifactId>
64 <scope>provided</scope>
65 </dependency>
66
67 <dependency>
68 <groupId>org.apache.tomcat.embed</groupId>
69 <artifactId>tomcat-embed-jasper</artifactId>
70 <scope>provided</scope>
71 </dependency>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040072
73
Dan Timoneyf20174d2020-08-10 14:09:14 -040074 <dependency>
75 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-devtools</artifactId>
77 <optional>true</optional>
78 </dependency>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +053079
Dan Timoneyf20174d2020-08-10 14:09:14 -040080 <dependency>
81 <groupId>org.springframework.boot</groupId>
82 <artifactId>spring-boot-starter-test</artifactId>
83 <version>1.5.3.RELEASE</version>
84 <scope>test</scope>
85 </dependency>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040086
Dan Timoneyf20174d2020-08-10 14:09:14 -040087 <dependency>
88 <groupId>org.springframework.boot</groupId>
89 <artifactId>spring-boot-starter-data-jpa</artifactId>
90 </dependency>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040091
Dan Timoneyf20174d2020-08-10 14:09:14 -040092 <!-- Add Log4j2 Dependency -->
93 <dependency>
94 <groupId>org.springframework.boot</groupId>
95 <artifactId>spring-boot-starter-log4j2</artifactId>
96 </dependency>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -040097
Dan Timoneyf20174d2020-08-10 14:09:14 -040098 <!-- Add Web jars, instead of dist folder -->
99 <dependency>
100 <groupId>org.webjars</groupId>
101 <artifactId>bootstrap</artifactId>
102 <version>3.3.7</version>
103 </dependency>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +0530104
Dan Timoneyf20174d2020-08-10 14:09:14 -0400105 <dependency>
106 <groupId>org.webjars</groupId>
107 <artifactId>bootstrap-datepicker</artifactId>
108 <version>1.0.1</version>
109 </dependency>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -0400110
Dan Timoneyf20174d2020-08-10 14:09:14 -0400111 </dependencies>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -0400112
Dan Timoneyf20174d2020-08-10 14:09:14 -0400113 <build>
114 <plugins>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -0400115
Dan Timoneyf20174d2020-08-10 14:09:14 -0400116 <plugin>
117 <groupId>org.springframework.boot</groupId>
118 <artifactId>spring-boot-maven-plugin</artifactId>
119 <configuration>
120 <executable>true</executable>
121 </configuration>
122 </plugin>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +0530123
Dan Timoneyf20174d2020-08-10 14:09:14 -0400124 <plugin>
125 <groupId>org.apache.maven.plugins</groupId>
126 <artifactId>maven-surefire-plugin</artifactId>
127 <configuration>
128 <skipTests>true</skipTests>
129 </configuration>
130 </plugin>
Soumendu Sekhar Acharya929c1f12018-08-01 17:21:15 +0530131
Dan Timoneyf20174d2020-08-10 14:09:14 -0400132 <plugin>
133 <groupId>org.jacoco</groupId>
134 <artifactId>jacoco-maven-plugin</artifactId>
135 <version>0.7.5.201505241946</version>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -0400136 <executions>
Dan Timoneyf20174d2020-08-10 14:09:14 -0400137 <execution>
138 <id>pre-unit-test</id>
139 <goals>
140 <goal>prepare-agent</goal>
141 </goals>
142 <configuration>
143 <!-- Sets the path to the file which contains the execution data. -->
144 <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -0400145 <!-- Sets the name of the property containing the settings for JaCoCo
Dan Timoneyf20174d2020-08-10 14:09:14 -0400146 runtime agent. -->
147 <propertyName>surefireArgLine</propertyName>
148 </configuration>
149 </execution>
Singal, Kapil (ks220y)eef450e2020-08-28 10:18:17 -0400150
Dan Timoneyf20174d2020-08-10 14:09:14 -0400151 <execution>
152 <id>post-unit-test</id>
153 <phase>test</phase>
154 <goals>
155 <goal>report</goal>
156 </goals>
157 <configuration>
158 <!-- Sets the path to the file which contains the execution data. -->
159 <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
160 <!-- Sets the output directory for the code coverage report. -->
161 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
162 </configuration>
163 </execution>
164 </executions>
165 </plugin>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -0400166
Dan Timoneyf20174d2020-08-10 14:09:14 -0400167 <plugin>
168 <groupId>io.fabric8</groupId>
169 <artifactId>docker-maven-plugin</artifactId>
170 <version>0.15.3</version>
171 <configuration>
172 <dockerHost>http://127.0.0.1:9092</dockerHost>
173 <verbose>true</verbose>
174 <images>
175 <image>
176 <name>vishal/sdnc_report</name>
177 <build>
178 <dockerFile>Dockerfile</dockerFile>
179 <assembly>
180 <descriptorRef>artifact</descriptorRef>
181 </assembly>
182 </build>
183 </image>
184 </images>
185 </configuration>
186 </plugin>
187 </plugins>
188 </build>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -0400189</project>