Release dashboard image at version 2.1.0
[portal/ric-dashboard.git] / dashboard / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--<![CDATA[
3 ========================LICENSE_START=================================
4 O-RAN-SC
5 %%
6 Copyright (C) 2019 AT&T Intellectual Property
7 %%
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12      http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ========================LICENSE_END===================================
20 ]]>-->
21 <project xmlns="http://maven.apache.org/POM/4.0.0"
22         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.springframework.boot</groupId>
27                 <artifactId>spring-boot-starter-parent</artifactId>
28                 <version>2.2.4.RELEASE</version>
29                 <relativePath /> <!-- lookup parent from repository -->
30         </parent>
31         <groupId>org.o-ran-sc.portal.ric-dashboard</groupId>
32         <artifactId>ric-dash-parent</artifactId>
33         <name>RIC Dashboard Project</name>
34         <packaging>pom</packaging>
35         <version>2.1.0-SNAPSHOT</version>
36         <properties>
37                 <java.version>11</java.version>
38                 <!-- Properties for the license-maven-plugin in child POMs -->
39                 <lmp.organization.name>AT&amp;T Intellectual Property</lmp.organization.name>
40                 <lmp.project.name>O-RAN-SC</lmp.project.name>
41                 <lmp.inception.year>2019</lmp.inception.year>
42                 <lmp.license.name>apache_v2</lmp.license.name>
43                 <lmp.process.start.tag>========================LICENSE_START=================================</lmp.process.start.tag>
44                 <lmp.process.end.tag>========================LICENSE_END===================================</lmp.process.end.tag>
45         </properties>
46         <modules>
47                 <module>app-mgr-client</module>
48                 <module>e2-mgr-client</module>
49                 <module>xapp-obrd-client</module>
50                 <module>webapp-frontend</module>
51                 <module>webapp-backend</module>
52         </modules>
53         <build>
54                 <plugins>
55                         <plugin>
56                                 <groupId>org.codehaus.mojo</groupId>
57                                 <artifactId>license-maven-plugin</artifactId>
58                                 <configuration>
59                                         <organizationName>${lmp.organization.name}</organizationName>
60                                         <inceptionYear>${lmp.inception.year}</inceptionYear>
61                                         <projectName>${lmp.project.name}</projectName>
62                                         <licenseName>${lmp.license.name}</licenseName>
63                                         <processStartTag>${lmp.process.start.tag}</processStartTag>
64                                         <processEndTag>${lmp.process.end.tag}</processEndTag>
65                                         <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
66                                 </configuration>
67                                 <executions>
68                                         <execution>
69                                                 <id>first</id>
70                                                 <goals>
71                                                         <goal>update-file-header</goal>
72                                                 </goals>
73                                                 <phase>process-sources</phase>
74                                         </execution>
75                                 </executions>
76                         </plugin>
77                         <plugin>
78                                 <groupId>org.apache.maven.plugins</groupId>
79                                 <artifactId>maven-compiler-plugin</artifactId>
80                                 <configuration>
81                                         <source>${java.version}</source>
82                                         <target>${java.version}</target>
83                                 </configuration>
84                         </plugin>
85                         <!-- Always generate a source jar -->
86                         <plugin>
87                                 <groupId>org.apache.maven.plugins</groupId>
88                                 <artifactId>maven-source-plugin</artifactId>
89                                 <executions>
90                                         <execution>
91                                                 <id>attach-sources</id>
92                                                 <goals>
93                                                         <goal>jar</goal>
94                                                 </goals>
95                                         </execution>
96                                 </executions>
97                         </plugin>
98                         <!-- Always skip the deploy-jar-to-nexus step -->
99                         <plugin>
100                                 <groupId>org.apache.maven.plugins</groupId>
101                                 <artifactId>maven-deploy-plugin</artifactId>
102                                 <configuration>
103                                         <skip>true</skip>
104                                 </configuration>
105                         </plugin>
106                         <!-- support sonar in multi-module project -->
107                         <plugin>
108                                 <groupId>org.sonarsource.scanner.maven</groupId>
109                                 <artifactId>sonar-maven-plugin</artifactId>
110                                 <version>3.6.0.1398</version>
111                         </plugin>
112                 </plugins>
113                 <pluginManagement>
114                         <plugins>
115                                 <plugin>
116                                         <groupId>org.codehaus.mojo</groupId>
117                                         <artifactId>license-maven-plugin</artifactId>
118                                         <version>1.20</version>
119                                 </plugin>
120                         </plugins>
121                 </pluginManagement>
122         </build>
123 </project>