blob: 3963a39e766001e0ee65b659aae572685875c7de [file] [log] [blame]
elinuxhenrikf507d922020-03-19 14:52:24 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--<![CDATA[
3========================LICENSE_START=================================
4O-RAN-SC
5%%
6Copyright (C) 2019 AT&T Intellectual Property
7Modifications Copyright (C) 2020 Nordix Foundation
8%%
9Licensed under the Apache License, Version 2.0 (the "License");
10you may not use this file except in compliance with the License.
11You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15Unless required by applicable law or agreed to in writing, software
16distributed under the License is distributed on an "AS IS" BASIS,
17WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18See the License for the specific language governing permissions and
19limitations 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>
elinuxhenrik22cfc3d2020-03-30 08:53:58 +020035 <name>Non-RT RIC Control Panel project</name>
elinuxhenrikf507d922020-03-19 14:52:24 +010036 <packaging>pom</packaging>
37 <version>1.0.0-SNAPSHOT</version>
38 <properties>
39 <java.version>11</java.version>
elinuxhenrik0e656f12020-03-24 09:09:54 +010040 <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version>
elinuxhenrikf507d922020-03-19 14:52:24 +010041 </properties>
42 <modules>
43 <module>webapp-frontend</module>
44 <module>webapp-backend</module>
45 </modules>
46 <build>
47 <plugins>
48 <plugin>
elinuxhenrikf507d922020-03-19 14:52:24 +010049 <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>
elinuxhenrik0e656f12020-03-24 09:09:54 +010081 <version>${sonar-maven-plugin.version}</version>
elinuxhenrikf507d922020-03-19 14:52:24 +010082 </plugin>
83 </plugins>
elinuxhenrikf507d922020-03-19 14:52:24 +010084 </build>
85</project>