Update runtime-api with bpgen 1.7.3
[dcaegen2/platform.git] / mod / runtimeapi / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 Copyright (c) 2019-2020 AT&T Intellectual Property. All rights reserved.
5 ================================================================================
6 Modifications Copyright (c) 2020 Nokia
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         <packaging>pom</packaging>
26         <modules>
27                 <module>runtime-core</module>
28                 <module>runtime-web</module>
29         </modules>
30         <parent>
31                 <groupId>org.onap.oparent</groupId>
32                 <artifactId>oparent</artifactId>
33                 <version>2.0.0</version>
34         </parent>
35         <groupId>org.onap.dcaegen2.platform.mod</groupId>
36         <artifactId>runtimeapi</artifactId>
37         <version>1.2.3</version>
38         <name>dcaegen2-platform-mod-runtimeapi</name>
39         <description>MOD Runtime API</description>
40         <properties>
41                 <maven.deploy.skip>true</maven.deploy.skip>
42                 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
43                 <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
44                 </sonar.coverage.jacoco.xmlReportPaths>
45         </properties>
46         <profiles>
47                 <profile>
48                         <id>java11</id>
49                         <properties>
50                                 <maven.compiler.source>11</maven.compiler.source>
51                                 <maven.compiler.target>11</maven.compiler.target>
52                                 <maven.compiler.release>11</maven.compiler.release>
53                         </properties>
54                         <activation>
55                         <property>
56                                 <name>m2e.version</name>
57                         </property>
58                         <activeByDefault>true</activeByDefault>
59                 </activation>
60                 </profile>
61                 <profile>
62                         <id>java8</id>
63                         <properties>
64                                 <maven.compiler.source>1.8</maven.compiler.source>
65                                 <maven.compiler.target>1.8</maven.compiler.target>
66                         </properties>
67                 </profile>
68         </profiles>
69
70         <build>
71                 <plugins>
72                         <!-- support sonar in multi-module project -->
73                         <plugin>
74                                 <groupId>org.sonarsource.scanner.maven</groupId>
75                                 <artifactId>sonar-maven-plugin</artifactId>
76                                 <version>3.6.0.1398</version>
77                         </plugin>
78
79                         <plugin>
80                                 <groupId>org.apache.maven.plugins</groupId>
81                                 <artifactId>maven-enforcer-plugin</artifactId>
82                                 <version>1.4.1</version>
83                                 <executions>
84                                         <execution>
85                                                 <id>enforce-no-snapshots</id>
86                                                 <goals>
87                                                         <goal>enforce</goal>
88                                                 </goals>
89                                                 <configuration>
90                                                         <rules>
91                                                                 <requireReleaseDeps>
92                                                                         <message>No Snapshots Allowed!</message>
93                                                                 </requireReleaseDeps>
94                                                         </rules>
95                                                         <fail>false</fail>
96                                                 </configuration>
97                                         </execution>
98                                 </executions>
99                         </plugin>
100
101                 </plugins>
102         </build>
103         <dependencyManagement>
104                 <dependencies>
105                         <dependency>
106                                 <groupId>org.springframework.boot</groupId>
107                                 <artifactId>spring-boot-starter-parent</artifactId>
108                                 <version>2.1.7.RELEASE</version>
109                                 <type>pom</type>
110                                 <scope>import</scope>
111                                 <exclusions>
112                                         <exclusion>
113                                                 <groupId>org.springframework.plugin</groupId>
114                                                 <artifactId>spring-plugin-core</artifactId>
115                                         </exclusion>
116                                 </exclusions>
117                         </dependency>
118                         <dependency>
119                                 <groupId>org.springframework.plugin</groupId>
120                                 <artifactId>spring-plugin-core</artifactId>
121                                 <version>2.0.0.RELEASE</version>
122                         </dependency>
123                 </dependencies>
124         </dependencyManagement>
125 </project>