Update Release Notes for Bronze
[portal/nonrtric-controlpanel.git] / 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 Modifications Copyright (C) 2020 Nordix Foundation
8 %%
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13      http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ========================LICENSE_END===================================
21 ]]>-->
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25         <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <!-- this group Id must match LF gerrit repository -->
28                 <groupId>org.springframework.boot</groupId>
29                 <artifactId>spring-boot-starter-parent</artifactId>
30                 <version>2.2.5.RELEASE</version>
31                 <relativePath /> <!-- lookup parent from repository -->
32         </parent>
33         <groupId>org.o-ran-sc.portal.nonrtric.controlpanel</groupId>
34         <artifactId>nonrtric-controlpanel-parent</artifactId>
35         <name>Non-RT RIC Control Panel project</name>
36         <packaging>pom</packaging>
37         <version>2.0.0-SNAPSHOT</version>
38         <properties>
39                 <java.version>11</java.version>
40         <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
41         </properties>
42         <modules>
43                 <module>webapp-frontend</module>
44                 <module>webapp-backend</module>
45         </modules>
46         <build>
47                 <plugins>
48                         <plugin>
49                                 <groupId>org.apache.maven.plugins</groupId>
50                                 <artifactId>maven-compiler-plugin</artifactId>
51                                 <configuration>
52                                         <source>${java.version}</source>
53                                         <target>${java.version}</target>
54                                 </configuration>
55                         </plugin>
56                         <!-- Always generate a source jar -->
57                         <plugin>
58                                 <groupId>org.apache.maven.plugins</groupId>
59                                 <artifactId>maven-source-plugin</artifactId>
60                                 <executions>
61                                         <execution>
62                                                 <id>attach-sources</id>
63                                                 <goals>
64                                                         <goal>jar</goal>
65                                                 </goals>
66                                         </execution>
67                                 </executions>
68                         </plugin>
69                         <!-- Always skip the deploy-jar-to-nexus step -->
70                         <plugin>
71                                 <groupId>org.apache.maven.plugins</groupId>
72                                 <artifactId>maven-deploy-plugin</artifactId>
73                                 <configuration>
74                                         <skip>true</skip>
75                                 </configuration>
76                         </plugin>
77                         <!-- support sonar in multi-module project -->
78                         <plugin>
79                                 <groupId>org.sonarsource.scanner.maven</groupId>
80                                 <artifactId>sonar-maven-plugin</artifactId>
81                                 <version>${sonar-maven-plugin.version}</version>
82                         </plugin>
83                 </plugins>
84         </build>
85 </project>