Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | f8a620d | 2017-07-28 08:21:14 +0000 | [diff] [blame] | 3 | ONAP Policy Engine - Drools PDP |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 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 | |
Guo Ruijing | a790f40 | 2017-08-03 09:05:02 +0000 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.oparent</groupId> |
| 27 | <artifactId>oparent</artifactId> |
| 28 | <version>1.0.0-SNAPSHOT</version> |
| 29 | <relativePath/> |
| 30 | </parent> |
| 31 | |
Guo Ruijing | f8a620d | 2017-07-28 08:21:14 +0000 | [diff] [blame] | 32 | <groupId>org.onap.policy.common</groupId> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 33 | <artifactId>common-modules</artifactId> |
Pamela Dragosh | d37552e | 2017-03-10 13:01:28 -0500 | [diff] [blame] | 34 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 35 | |
| 36 | <packaging>pom</packaging> |
| 37 | |
Pamela Dragosh | 1c09be6 | 2017-04-28 10:50:47 -0400 | [diff] [blame] | 38 | <name>Policy Engine - Common Modules</name> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 39 | <description>Common Modules for Policy-Engine in both XACML and Drools flavor</description> |
| 40 | |
| 41 | <properties> |
| 42 | <maven.compiler.source>1.8</maven.compiler.source> |
| 43 | <maven.compiler.target>1.8</maven.compiler.target> |
| 44 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Pamela Dragosh | ffaa6ad | 2017-03-30 09:32:18 -0400 | [diff] [blame] | 45 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 46 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> |
Anaƫl Closson | c2aad65 | 2017-04-12 12:38:57 +0200 | [diff] [blame] | 47 | <releases.path>content/repositories/releases/</releases.path> |
| 48 | <snapshots.path>content/repositories/snapshots/</snapshots.path> |
| 49 | <staging.path>content/repositories/staging/</staging.path> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 50 | </properties> |
| 51 | |
| 52 | |
| 53 | <modules> |
| 54 | <module>common-logging</module> |
| 55 | <module>integrity-audit</module> |
| 56 | <module>integrity-monitor</module> |
Pamela Dragosh | 9dbb640 | 2017-07-31 11:13:03 -0400 | [diff] [blame] | 57 | <module>site-manager</module> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 58 | </modules> |
| 59 | |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 60 | <distributionManagement> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 61 | <site> |
Pamela Dragosh | 205fba2 | 2017-07-31 15:14:59 -0400 | [diff] [blame] | 62 | <id>ecomp-site</id> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 63 | <url>dav:${nexusproxy}${sitePath}</url> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 64 | </site> |
| 65 | </distributionManagement> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 66 | |
| 67 | <build> |
| 68 | <plugins> |
| 69 | <plugin> |
Pamela Dragosh | 9944937 | 2017-02-17 11:29:43 -0500 | [diff] [blame] | 70 | <groupId>org.sonatype.plugins</groupId> |
| 71 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 72 | <version>1.6.7</version> |
| 73 | <extensions>true</extensions> |
| 74 | <configuration> |
| 75 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 76 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
Pamela Dragosh | d83dab1 | 2017-07-31 21:09:20 -0400 | [diff] [blame] | 77 | <serverId>ecomp-staging</serverId> |
Pamela Dragosh | 9944937 | 2017-02-17 11:29:43 -0500 | [diff] [blame] | 78 | </configuration> |
| 79 | </plugin> |
| 80 | <plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 81 | <groupId>org.apache.maven.plugins</groupId> |
| 82 | <artifactId>maven-deploy-plugin</artifactId> |
| 83 | <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter --> |
Pamela Dragosh | 9944937 | 2017-02-17 11:29:43 -0500 | [diff] [blame] | 84 | <configuration> |
| 85 | <skip /> |
| 86 | </configuration> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 87 | </plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 88 | <plugin> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 89 | <groupId>org.apache.maven.plugins</groupId> |
| 90 | <artifactId>maven-site-plugin</artifactId> |
| 91 | <version>3.6</version> |
| 92 | <dependencies> |
| 93 | <dependency> |
| 94 | <groupId>org.apache.maven.wagon</groupId> |
| 95 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 96 | <version>2.10</version> |
| 97 | </dependency> |
| 98 | </dependencies> |
| 99 | </plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 100 | </plugins> |
| 101 | </build> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 102 | <reporting> |
| 103 | <plugins> |
| 104 | <plugin> |
| 105 | <groupId>org.apache.maven.plugins</groupId> |
| 106 | <artifactId>maven-javadoc-plugin</artifactId> |
| 107 | <version>2.10.4</version> |
| 108 | <configuration> |
| 109 | <failOnError>false</failOnError> |
| 110 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 111 | <docletArtifact> |
| 112 | <groupId>org.umlgraph</groupId> |
| 113 | <artifactId>umlgraph</artifactId> |
| 114 | <version>5.6</version> |
| 115 | </docletArtifact> |
| 116 | <additionalparam>-views</additionalparam> |
| 117 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 118 | </configuration> |
| 119 | </plugin> |
| 120 | </plugins> |
| 121 | </reporting> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 122 | </project> |