elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 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> |
elinuxhenrik | 22cfc3d | 2020-03-30 08:53:58 +0200 | [diff] [blame] | 35 | <name>Non-RT RIC Control Panel project</name> |
elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 36 | <packaging>pom</packaging> |
| 37 | <version>1.0.0-SNAPSHOT</version> |
| 38 | <properties> |
| 39 | <java.version>11</java.version> |
elinuxhenrik | 0e656f1 | 2020-03-24 09:09:54 +0100 | [diff] [blame] | 40 | <sonar-maven-plugin.version>3.7.0.1746</sonar-maven-plugin.version> |
elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 41 | </properties> |
| 42 | <modules> |
| 43 | <module>webapp-frontend</module> |
| 44 | <module>webapp-backend</module> |
| 45 | </modules> |
| 46 | <build> |
| 47 | <plugins> |
| 48 | <plugin> |
elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 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> |
elinuxhenrik | 0e656f1 | 2020-03-24 09:09:54 +0100 | [diff] [blame] | 81 | <version>${sonar-maven-plugin.version}</version> |
elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 82 | </plugin> |
| 83 | </plugins> |
elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 84 | </build> |
| 85 | </project> |