Merge "Adding Junit Test for EPAuditServiceImp.java"
[portal.git] / ecomp-portal-widget-ms / widget-ms / pom.xml
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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4                 <modelVersion>4.0.0</modelVersion>
5
6         <!-- This project must name Spring as parent; cannot name Portal -->
7         <parent>
8                 <groupId>org.springframework.boot</groupId>
9                 <artifactId>spring-boot-starter-parent</artifactId>
10                 <version>1.4.2.RELEASE</version>
11                 <relativePath /> <!-- lookup parent from repository -->
12         </parent>
13
14         <groupId>org.onap.portal</groupId>
15         <artifactId>widget-ms</artifactId>
16         <version>2.2.0</version>
17         <packaging>jar</packaging>
18         <name>widget-microservice</name>
19
20         <properties>
21                 <docker.imagename>widget-ms</docker.imagename>
22                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24                 <java.version>1.8</java.version>
25                 <hibernate.version>4.3.11.Final</hibernate.version>
26                 <skipTests>true</skipTests>
27                 <!-- Replicate this from OParent -->
28                 <jacocoVersion>0.7.6.201602180812</jacocoVersion>
29         </properties>
30
31         <dependencies>
32                 <!-- This pom pulls in artifacts -->
33                 <dependency>
34                         <groupId>org.onap.portal</groupId>
35                         <artifactId>common-widgets</artifactId>
36                         <version>${project.version}</version>
37                         <type>pom</type>
38                 </dependency>
39                 <dependency>
40                         <!-- Setup Spring Data JPA Repository support -->
41                         <groupId>org.springframework.boot</groupId>
42                         <artifactId>spring-boot-starter-data-jpa</artifactId>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.springframework.boot</groupId>
46                         <artifactId>spring-boot-starter-security</artifactId>
47                 </dependency>
48                 <dependency>
49                         <groupId>org.springframework.boot</groupId>
50                         <artifactId>spring-boot-starter-thymeleaf</artifactId>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.springframework.boot</groupId>
54                         <artifactId>spring-boot-devtools</artifactId>
55                         <optional>true</optional>
56                 </dependency>
57                 <dependency>
58                         <groupId>org.springframework.boot</groupId>
59                         <artifactId>spring-boot-configuration-processor</artifactId>
60                         <optional>true</optional>
61                 </dependency>
62                 <dependency>
63                         <groupId>org.hibernate</groupId>
64                         <artifactId>hibernate-core</artifactId>
65                         <!-- <version>${hibernate.version}</version> -->
66                 </dependency>
67                 <dependency>
68                         <groupId>org.springframework.boot</groupId>
69                         <artifactId>spring-boot-starter</artifactId>
70                 </dependency>
71                 <dependency>
72                         <groupId>org.springframework.boot</groupId>
73                         <artifactId>spring-boot-starter-test</artifactId>
74                         <scope>test</scope>
75                 </dependency>
76                 <dependency>
77                         <groupId>org.springframework.boot</groupId>
78                         <artifactId>spring-boot-starter-web</artifactId>
79                 </dependency>
80                 <dependency>
81                         <groupId>commons-codec</groupId>
82                         <artifactId>commons-codec</artifactId>
83                         <!-- <version>1.10</version> -->
84                 </dependency>
85                 <dependency>
86                         <groupId>org.mariadb.jdbc</groupId>
87                         <artifactId>mariadb-java-client</artifactId>
88                         <!-- <version>1.5.8</version> -->
89                 </dependency>
90                 <dependency>
91                         <groupId>com.github.ulisesbocchio</groupId>
92                         <artifactId>jasypt-spring-boot-starter</artifactId>
93                         <version>1.9</version>
94                 </dependency>
95                 <!-- hibernate-core depends on dom4j, which has optional dependencies. 
96                         On jenkins, contrary to doc, mvn 3.0.5 packages the optional dependencies 
97                         in the war. Workaround: exclude them explicitly. -->
98                 <dependency>
99                         <groupId>dom4j</groupId>
100                         <artifactId>dom4j</artifactId>
101                         <!-- <version>1.6.1</version> -->
102                         <exclusions>
103                                 <exclusion>
104                                         <groupId>jaxme</groupId>
105                                         <artifactId>jaxme-api</artifactId>
106                                 </exclusion>
107                                 <exclusion>
108                                         <groupId>jaxen</groupId>
109                                         <artifactId>jaxen</artifactId>
110                                 </exclusion>
111                                 <exclusion>
112                                         <groupId>msv</groupId>
113                                         <artifactId>xsdlib</artifactId>
114                                 </exclusion>
115                                 <exclusion>
116                                         <groupId>msv</groupId>
117                                         <artifactId>relaxngDatatype</artifactId>
118                                 </exclusion>
119                                 <exclusion>
120                                         <groupId>pull-parser</groupId>
121                                         <artifactId>pull-parser</artifactId>
122                                 </exclusion>
123                                 <exclusion>
124                                         <groupId>xpp3</groupId>
125                                         <artifactId>xpp3</artifactId>
126                                 </exclusion>
127                                 <exclusion>
128                                         <groupId>stax</groupId>
129                                         <artifactId>stax-api</artifactId>
130                                 </exclusion>
131                         </exclusions>
132                 </dependency>
133                 <!-- Jacoco offline instrumentation agent -->
134                 <dependency>
135                         <groupId>org.jacoco</groupId>
136                         <artifactId>org.jacoco.agent</artifactId>
137                         <version>${jacocoVersion}</version>
138                         <classifier>runtime</classifier>
139                 </dependency>
140                 <dependency>
141                 <groupId>org.apache.tomcat.embed</groupId>
142                 <artifactId>tomcat-embed-core</artifactId>
143                 <version>8.5.13</version>
144                 </dependency>
145         </dependencies>
146
147         <build>
148
149                 <finalName>${project.artifactId}</finalName>
150
151                 <!-- To add resources, must name all including usual src/main/resources -->
152                 <resources>
153                         <resource>
154                                 <directory>src/main/resources</directory>
155                                 <filtering>true</filtering>
156                         </resource>
157                         <resource>
158                                 <directory>../common-widgets/target</directory>
159                                 <includes>
160                                         <include>**/*.zip</include>
161                                 </includes>
162                         </resource>
163                 </resources>
164
165                 <pluginManagement>
166                         <plugins>
167                                 <!-- replicated from OParent -->
168                                 <plugin>
169                                         <groupId>org.apache.maven.plugins</groupId>
170                                         <artifactId>maven-site-plugin</artifactId>
171                                         <version>3.6</version>
172                                         <dependencies>
173                                                 <dependency>
174                                                         <groupId>org.apache.maven.wagon</groupId>
175                                                         <artifactId>wagon-webdav-jackrabbit</artifactId>
176                                                         <version>2.10</version>
177                                                 </dependency>
178                                         </dependencies>
179                                 </plugin>
180                         </plugins>
181                 </pluginManagement>
182
183                 <plugins>
184
185                         <plugin>
186                                 <groupId>org.springframework.boot</groupId>
187                                 <artifactId>spring-boot-maven-plugin</artifactId>
188                         </plugin>
189
190                         <!-- No deployment step for this project -->
191                         <plugin>
192                                 <groupId>org.apache.maven.plugins</groupId>
193                                 <artifactId>maven-deploy-plugin</artifactId>
194                                 <!-- version set by spring <version>2.8</version> -->
195                                 <configuration>
196                                         <skip>true</skip>
197                                 </configuration>
198                         </plugin>
199                         <plugin>
200                                 <groupId>org.jacoco</groupId>
201                                 <artifactId>jacoco-maven-plugin</artifactId>
202                                 <version>${jacocoVersion}</version>
203                                 <executions>
204                                         <!-- disable jacoco executions from oparent -->
205                                         <execution>
206                                                 <id>pre-unit-test</id>
207                                                 <phase>none</phase>
208                                         </execution>
209                                         <execution>
210                                                 <id>post-unit-test</id>
211                                                 <phase>none</phase>
212                                         </execution>
213                                         <execution>
214                                                 <id>pre-integration-test</id>
215                                                 <phase>none</phase>
216                                         </execution>
217                                         <execution>
218                                                 <id>post-integration-test</id>
219                                                 <phase>none</phase>
220                                         </execution>
221                                         <!-- Order matters -->
222                                         <execution>
223                                                 <id>portal-prepare-agent</id>
224                                                 <goals>
225                                                         <goal>prepare-agent</goal>
226                                                 </goals>
227                                                 <configuration>
228                                                         <destFile>${sonar.jacoco.reportPath}</destFile>
229                                                 </configuration>
230                                         </execution>
231                                         <!-- offline instrumentation for PowerMock -->
232                                         <execution>
233                                                 <id>portal-offline-instrument</id>
234                                                 <goals>
235                                                         <goal>instrument</goal>
236                                                 </goals>
237                                         </execution>
238                                         <execution>
239                                                 <id>portal-restore-instrumented-classes</id>
240                                                 <phase>test</phase>
241                                                 <goals>
242                                                         <goal>restore-instrumented-classes</goal>
243                                                 </goals>
244                                         </execution>
245                                         <execution>
246                                                 <id>portal-post-unit-test</id>
247                                                 <phase>test</phase>
248                                                 <goals>
249                                                         <goal>report</goal>
250                                                 </goals>
251                                                 <configuration>
252                                                         <dataFile>${sonar.jacoco.reportPath}</dataFile>
253                                                         <outputDirectory>${project.basedir}/target/site/jacoco</outputDirectory>
254                                                 </configuration>
255                                         </execution>
256                                 </executions>
257                         </plugin>
258
259                         <plugin>
260                                 <groupId>org.apache.maven.plugins</groupId>
261                                 <artifactId>maven-surefire-plugin</artifactId>
262                                 <configuration>
263                                         <systemPropertyVariables>
264                                                 <jacoco-agent.destfile>${project.build.directory}/code-coverage/jacoco-ut.exec</jacoco-agent.destfile>
265                                         </systemPropertyVariables>
266                                 </configuration>
267                         </plugin>
268                 </plugins>
269
270         </build>
271
272         <!-- This POM cannot inherit from OParent -->
273         <distributionManagement>
274                 <site>
275                         <id>ecomp-site</id>
276                         <url>dav:https://nexus.onap.org/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</url>
277                 </site>
278         </distributionManagement>
279
280 </project>