Pamela Dragosh | 1f04941 | 2017-08-03 13:22:41 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP Policy Engine - Drools PDP |
| 4 | ================================================================================ |
Pamela Dragosh | 0994547 | 2018-05-01 10:15:39 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Pamela Dragosh | 1f04941 | 2017-08-03 13:22:41 -0400 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.oparent</groupId> |
| 27 | <artifactId>oparent</artifactId> |
liamfallon | 4402b4a | 2018-03-14 21:40:03 +0000 | [diff] [blame] | 28 | <version>1.1.0</version> |
Pamela Dragosh | 1f04941 | 2017-08-03 13:22:41 -0400 | [diff] [blame] | 29 | <relativePath/> |
| 30 | </parent> |
| 31 | |
| 32 | <groupId>org.onap.policy.pap</groupId> |
| 33 | <artifactId>pap</artifactId> |
Pamela Dragosh | 0994547 | 2018-05-01 10:15:39 -0400 | [diff] [blame] | 34 | <version>2.0.0-SNAPSHOT</version> |
Pamela Dragosh | 1f04941 | 2017-08-03 13:22:41 -0400 | [diff] [blame] | 35 | |
| 36 | <packaging>pom</packaging> |
| 37 | |
Jessica Wagantall | 5a67841 | 2017-09-08 14:59:40 -0700 | [diff] [blame] | 38 | <name>policy-pap</name> |
Pamela Dragosh | 1f04941 | 2017-08-03 13:22:41 -0400 | [diff] [blame] | 39 | <description>Code that implements the Policy Administration Backend.</description> |
| 40 | |
| 41 | <properties> |
Pamela Dragosh | 788fe2c | 2017-08-17 10:29:36 -0400 | [diff] [blame] | 42 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
| 43 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> |
| 44 | <releases.path>content/repositories/releases/</releases.path> |
| 45 | <snapshots.path>content/repositories/snapshots/</snapshots.path> |
| 46 | <staging.path>content/repositories/staging/</staging.path> |
Pamela Dragosh | 1f04941 | 2017-08-03 13:22:41 -0400 | [diff] [blame] | 47 | </properties> |
| 48 | |
| 49 | <modules> |
| 50 | </modules> |
| 51 | |
Pamela Dragosh | 788fe2c | 2017-08-17 10:29:36 -0400 | [diff] [blame] | 52 | <distributionManagement> |
| 53 | <site> |
| 54 | <id>ecomp-site</id> |
| 55 | <url>dav:${nexusproxy}${sitePath}</url> |
| 56 | </site> |
| 57 | </distributionManagement> |
| 58 | |
| 59 | <build> |
| 60 | <plugins> |
| 61 | <plugin> |
| 62 | <groupId>org.sonatype.plugins</groupId> |
| 63 | <artifactId>nexus-staging-maven-plugin</artifactId> |
Pamela Dragosh | 788fe2c | 2017-08-17 10:29:36 -0400 | [diff] [blame] | 64 | <extensions>true</extensions> |
| 65 | <configuration> |
| 66 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 67 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 68 | <serverId>ecomp-staging</serverId> |
| 69 | </configuration> |
| 70 | </plugin> |
| 71 | <plugin> |
| 72 | <groupId>org.apache.maven.plugins</groupId> |
| 73 | <artifactId>maven-deploy-plugin</artifactId> |
Pamela Dragosh | 788fe2c | 2017-08-17 10:29:36 -0400 | [diff] [blame] | 74 | <configuration> |
| 75 | <skip /> |
| 76 | </configuration> |
| 77 | </plugin> |
| 78 | <plugin> |
| 79 | <groupId>org.apache.maven.plugins</groupId> |
| 80 | <artifactId>maven-site-plugin</artifactId> |
Pamela Dragosh | 788fe2c | 2017-08-17 10:29:36 -0400 | [diff] [blame] | 81 | <dependencies> |
| 82 | <dependency> |
| 83 | <groupId>org.apache.maven.wagon</groupId> |
| 84 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 85 | <version>2.10</version> |
| 86 | </dependency> |
| 87 | </dependencies> |
| 88 | </plugin> |
| 89 | </plugins> |
| 90 | </build> |
| 91 | <reporting> |
| 92 | <plugins> |
| 93 | <plugin> |
| 94 | <groupId>org.apache.maven.plugins</groupId> |
| 95 | <artifactId>maven-javadoc-plugin</artifactId> |
| 96 | <version>2.10.4</version> |
| 97 | <configuration> |
| 98 | <failOnError>false</failOnError> |
| 99 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 100 | <docletArtifact> |
| 101 | <groupId>org.umlgraph</groupId> |
| 102 | <artifactId>umlgraph</artifactId> |
| 103 | <version>5.6</version> |
| 104 | </docletArtifact> |
| 105 | <additionalparam>-views</additionalparam> |
| 106 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 107 | </configuration> |
| 108 | </plugin> |
| 109 | </plugins> |
| 110 | </reporting> |
| 111 | |
Pamela Dragosh | 1f04941 | 2017-08-03 13:22:41 -0400 | [diff] [blame] | 112 | </project> |