blob: 8f2965882c9583b0eed2864ed162561e6241e1f6 [file] [log] [blame]
Tony Hansenfc19b0a2017-08-22 18:24:50 +00001<?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/maven-v4_0_0.xsd">
4
5 <modelVersion>4.0.0</modelVersion>
6 <packaging>pom</packaging>
7 <groupId>org.onap.ccsdk.platform_blueprints</groupId>
8 <artifactId>platform-blueprints</artifactId>
9 <version>0.1.0-SNAPSHOT</version>
10
Jessica Wagantall2c11f8f2017-09-08 14:35:51 -070011 <name>ccsdk-platform-blueprints</name>
Tony Hansenfc19b0a2017-08-22 18:24:50 +000012 <description>CCSD Platform Blueprints</description>
Dan Timoneydaccb2d2017-09-14 14:03:37 -040013 <parent>
14 <groupId>org.onap.oparent</groupId>
15 <artifactId>oparent</artifactId>
16 <version>1.0.0-SNAPSHOT</version>
17 </parent>
Tony Hansenfc19b0a2017-08-22 18:24:50 +000018
Dan Timoney55ea0202017-09-27 09:42:49 +020019 <properties>
20 <maven.compiler.source>1.8</maven.compiler.source>
21 <maven.compiler.target>1.8</maven.compiler.target>
22 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
24 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
25 <!-- sitePath may be overridden in the inheriting POM if desired -->
26 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
27 </properties>
28 <distributionManagement>
29 <repository>
30 <id>ecomp-releases</id>
31 <url>${onap.nexus.url}/content/repositories/releases</url>
32 </repository>
33 <snapshotRepository>
34 <id>ecomp-snapshots</id>
35 <url>${onap.nexus.url}/content/repositories/snapshots</url>
36 </snapshotRepository>
37 </distributionManagement>
38 <build>
39 <pluginManagement>
40 <plugins>
41 <plugin>
42 <groupId>org.sonatype.plugins</groupId>
43 <artifactId>nexus-staging-maven-plugin</artifactId>
44 <version>1.6.7</version>
45 <extensions>true</extensions>
46 <configuration>
47 <nexusUrl>${onap.nexus.url}</nexusUrl>
48 <stagingProfileId>176c31dfe190a</stagingProfileId>
49 <serverId>ecomp-staging</serverId>
50 </configuration>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-deploy-plugin</artifactId>
55 <!-- This version supports the "deployAtEnd" parameter -->
56 <version>2.8</version>
57 <configuration>
58 <skip/>
59 </configuration>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-site-plugin</artifactId>
64 <version>3.6</version>
65 <dependencies>
66 <dependency>
67 <groupId>org.apache.maven.wagon</groupId>
68 <artifactId>wagon-webdav-jackrabbit</artifactId>
69 <version>2.10</version>
70 </dependency>
71 </dependencies>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.maven.plugins</groupId>
75 <artifactId>maven-enforcer-plugin</artifactId>
76 <version>3.0.0-M1</version>
77 <executions>
78 <execution>
79 <id>enforce-no-snapshots</id>
80 <goals>
81 <goal>enforce</goal>
82 </goals>
83 <configuration>
84 <rules>
85 <requireReleaseDeps>
86 <failWhenParentIsSnapshot>false</failWhenParentIsSnapshot>
87 <onlyWhenRelease>true</onlyWhenRelease>
88 <level>WARN</level>
89 </requireReleaseDeps>
90 </rules>
91 </configuration>
92 </execution>
93 </executions>
94 </plugin>
95 </plugins>
96 </pluginManagement>
97 <plugins>
98 <plugin>
99 <groupId>org.sonatype.plugins</groupId>
100 <artifactId>nexus-staging-maven-plugin</artifactId>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-deploy-plugin</artifactId>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-site-plugin</artifactId>
109 </plugin>
110 <plugin>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-enforcer-plugin</artifactId>
113 </plugin>
114 </plugins>
115 </build>
Tony Hansenfc19b0a2017-08-22 18:24:50 +0000116</project>