Kotagiri, Ramprasad (rp5662) | f4231f3 | 2019-03-21 17:37:42 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <!-- Add oparent parent --> |
Kotagiri, Ramprasad (rp5662) | 09762dc | 2020-08-07 15:54:10 -0400 | [diff] [blame] | 7 | |
Kotagiri, Ramprasad (rp5662) | f4231f3 | 2019-03-21 17:37:42 -0400 | [diff] [blame] | 8 | <parent> |
| 9 | <groupId>org.onap.oparent</groupId> |
| 10 | <artifactId>oparent</artifactId> |
Kotagiri, Ramprasad (rp5662) | fd5048d | 2019-05-17 11:03:49 -0400 | [diff] [blame] | 11 | <version>2.0.0</version> |
Kotagiri, Ramprasad (rp5662) | f4231f3 | 2019-03-21 17:37:42 -0400 | [diff] [blame] | 12 | </parent> |
| 13 | |
| 14 | <!-- Maven parent project for convenience of building and cleaning --> |
| 15 | <groupId>org.onap.ccsdk.dashboard</groupId> |
| 16 | <artifactId>ccsdk-app-parent</artifactId> |
Remigiusz Janeczek | e20974c | 2021-04-30 11:06:36 +0200 | [diff] [blame] | 17 | <version>1.4.3-SNAPSHOT</version> |
Kotagiri, Ramprasad (rp5662) | f4231f3 | 2019-03-21 17:37:42 -0400 | [diff] [blame] | 18 | <packaging>pom</packaging> |
| 19 | <name>ccsdk-dashboard</name> |
Timoney, Dan (dt5972) | d637dfd | 2019-04-03 21:06:43 -0700 | [diff] [blame] | 20 | |
| 21 | <properties> |
| 22 | <enforcer.skip>true</enforcer.skip> |
Timoney, Dan (dt5972) | 9922924 | 2019-07-30 09:56:36 -0400 | [diff] [blame] | 23 | <sonar.exclusions>**/external/**</sonar.exclusions> |
Kotagiri, Ramprasad (rp5662) | 47b65ef | 2020-08-21 08:40:37 -0400 | [diff] [blame] | 24 | <maven.compiler.source>11</maven.compiler.source> |
| 25 | <maven.compiler.target>11</maven.compiler.target> |
Timoney, Dan (dt5972) | d637dfd | 2019-04-03 21:06:43 -0700 | [diff] [blame] | 26 | </properties> |
Kotagiri, Ramprasad (rp5662) | f4231f3 | 2019-03-21 17:37:42 -0400 | [diff] [blame] | 27 | |
| 28 | <modules> |
| 29 | <module>ccsdk-app-common</module> |
| 30 | <module>ccsdk-app-overlay</module> |
| 31 | <module>ccsdk-app-os</module> |
| 32 | </modules> |
| 33 | <distributionManagement> |
| 34 | <repository> |
| 35 | <id>ecomp-releases</id> |
| 36 | <url>${onap.nexus.url}/content/repositories/releases</url> |
| 37 | </repository> |
| 38 | <snapshotRepository> |
| 39 | <id>ecomp-snapshots</id> |
| 40 | <url>${onap.nexus.url}/content/repositories/snapshots</url> |
| 41 | </snapshotRepository> |
| 42 | </distributionManagement> |
Kotagiri, Ramprasad (rp5662) | 09762dc | 2020-08-07 15:54:10 -0400 | [diff] [blame] | 43 | <build> |
| 44 | <plugins> |
| 45 | <plugin> |
| 46 | <groupId>org.codehaus.mojo</groupId> |
| 47 | <artifactId>versions-maven-plugin</artifactId> |
| 48 | <version>2.5</version> |
| 49 | <configuration> |
| 50 | <generateBackupPoms>false</generateBackupPoms> |
| 51 | </configuration> |
| 52 | </plugin> |
Kotagiri, Ramprasad (rp5662) | 47b65ef | 2020-08-21 08:40:37 -0400 | [diff] [blame] | 53 | <plugin> |
| 54 | <groupId>org.apache.maven.plugins</groupId> |
| 55 | <artifactId>maven-compiler-plugin</artifactId> |
| 56 | <version>3.8.0</version> |
| 57 | <configuration> |
| 58 | <release>11</release> |
| 59 | </configuration> |
| 60 | </plugin> |
Kotagiri, Ramprasad (rp5662) | 09762dc | 2020-08-07 15:54:10 -0400 | [diff] [blame] | 61 | </plugins> |
| 62 | </build> |
Kotagiri, Ramprasad (rp5662) | f4231f3 | 2019-03-21 17:37:42 -0400 | [diff] [blame] | 63 | |
Kotagiri, Ramprasad (rp5662) | f4231f3 | 2019-03-21 17:37:42 -0400 | [diff] [blame] | 64 | </project> |