Docker changes and Music Integration
[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                 <dependency>
146                         <groupId>ch.qos.logback</groupId>
147                         <artifactId>logback-core</artifactId>
148                         <version>1.2.3</version>
149                 </dependency>
150                 <dependency>
151                         <groupId>ch.qos.logback</groupId>
152                         <artifactId>logback-classic</artifactId>
153                         <version>1.2.3</version>
154                 </dependency>
155         </dependencies>
156
157         <build>
158
159                 <finalName>${project.artifactId}</finalName>
160
161                 <!-- To add resources, must name all including usual src/main/resources -->
162                 <resources>
163                         <resource>
164                                 <directory>src/main/resources</directory>
165                                 <filtering>true</filtering>
166                         </resource>
167                         <resource>
168                                 <directory>../common-widgets/target</directory>
169                                 <includes>
170                                         <include>**/*.zip</include>
171                                 </includes>
172                         </resource>
173                 </resources>
174
175                 <pluginManagement>
176                         <plugins>
177                                 <!-- replicated from OParent -->
178                                 <plugin>
179                                         <groupId>org.apache.maven.plugins</groupId>
180                                         <artifactId>maven-site-plugin</artifactId>
181                                         <version>3.6</version>
182                                         <dependencies>
183                                                 <dependency>
184                                                         <groupId>org.apache.maven.wagon</groupId>
185                                                         <artifactId>wagon-webdav-jackrabbit</artifactId>
186                                                         <version>2.10</version>
187                                                 </dependency>
188                                         </dependencies>
189                                 </plugin>
190                         </plugins>
191                 </pluginManagement>
192
193                 <plugins>
194
195                         <plugin>
196                                 <groupId>org.springframework.boot</groupId>
197                                 <artifactId>spring-boot-maven-plugin</artifactId>
198                         </plugin>
199
200                         <!-- No deployment step for this project -->
201                         <plugin>
202                                 <groupId>org.apache.maven.plugins</groupId>
203                                 <artifactId>maven-deploy-plugin</artifactId>
204                                 <!-- version set by spring <version>2.8</version> -->
205                                 <configuration>
206                                         <skip>true</skip>
207                                 </configuration>
208                         </plugin>
209                         <plugin>
210                                 <groupId>org.jacoco</groupId>
211                                 <artifactId>jacoco-maven-plugin</artifactId>
212                                 <version>${jacocoVersion}</version>
213                                 <executions>
214                                         <!-- disable jacoco executions from oparent -->
215                                         <execution>
216                                                 <id>pre-unit-test</id>
217                                                 <phase>none</phase>
218                                         </execution>
219                                         <execution>
220                                                 <id>post-unit-test</id>
221                                                 <phase>none</phase>
222                                         </execution>
223                                         <execution>
224                                                 <id>pre-integration-test</id>
225                                                 <phase>none</phase>
226                                         </execution>
227                                         <execution>
228                                                 <id>post-integration-test</id>
229                                                 <phase>none</phase>
230                                         </execution>
231                                         <!-- Order matters -->
232                                         <execution>
233                                                 <id>portal-prepare-agent</id>
234                                                 <goals>
235                                                         <goal>prepare-agent</goal>
236                                                 </goals>
237                                                 <configuration>
238                                                         <destFile>${sonar.jacoco.reportPath}</destFile>
239                                                 </configuration>
240                                         </execution>
241                                         <!-- offline instrumentation for PowerMock -->
242                                         <execution>
243                                                 <id>portal-offline-instrument</id>
244                                                 <goals>
245                                                         <goal>instrument</goal>
246                                                 </goals>
247                                         </execution>
248                                         <execution>
249                                                 <id>portal-restore-instrumented-classes</id>
250                                                 <phase>test</phase>
251                                                 <goals>
252                                                         <goal>restore-instrumented-classes</goal>
253                                                 </goals>
254                                         </execution>
255                                         <execution>
256                                                 <id>portal-post-unit-test</id>
257                                                 <phase>test</phase>
258                                                 <goals>
259                                                         <goal>report</goal>
260                                                 </goals>
261                                                 <configuration>
262                                                         <dataFile>${sonar.jacoco.reportPath}</dataFile>
263                                                         <outputDirectory>${project.basedir}/target/site/jacoco</outputDirectory>
264                                                 </configuration>
265                                         </execution>
266                                 </executions>
267                         </plugin>
268
269                         <plugin>
270                                 <groupId>org.apache.maven.plugins</groupId>
271                                 <artifactId>maven-surefire-plugin</artifactId>
272                                 <configuration>
273                                         <systemPropertyVariables>
274                                                 <jacoco-agent.destfile>${project.build.directory}/code-coverage/jacoco-ut.exec</jacoco-agent.destfile>
275                                         </systemPropertyVariables>
276                                 </configuration>
277                         </plugin>
278                 </plugins>
279
280         </build>
281
282         <!-- This POM cannot inherit from OParent -->
283         <distributionManagement>
284                 <site>
285                         <id>ecomp-site</id>
286                         <url>dav:https://nexus.onap.org/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</url>
287                 </site>
288         </distributionManagement>
289
290 </project>