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 | |
Jessica Wagantall | ba46717 | 2017-09-08 11:45:08 -0700 | [diff] [blame] | 38 | <name>policy-common</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> |
Pamela Dragosh | 9944937 | 2017-02-17 11:29:43 -0500 | [diff] [blame] | 72 | <extensions>true</extensions> |
| 73 | <configuration> |
| 74 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 75 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
Pamela Dragosh | d83dab1 | 2017-07-31 21:09:20 -0400 | [diff] [blame] | 76 | <serverId>ecomp-staging</serverId> |
Pamela Dragosh | 9944937 | 2017-02-17 11:29:43 -0500 | [diff] [blame] | 77 | </configuration> |
| 78 | </plugin> |
| 79 | <plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 80 | <groupId>org.apache.maven.plugins</groupId> |
| 81 | <artifactId>maven-deploy-plugin</artifactId> |
Pamela Dragosh | 9944937 | 2017-02-17 11:29:43 -0500 | [diff] [blame] | 82 | <configuration> |
| 83 | <skip /> |
| 84 | </configuration> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 85 | </plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 86 | <plugin> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 87 | <groupId>org.apache.maven.plugins</groupId> |
| 88 | <artifactId>maven-site-plugin</artifactId> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 89 | <dependencies> |
| 90 | <dependency> |
| 91 | <groupId>org.apache.maven.wagon</groupId> |
| 92 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 93 | <version>2.10</version> |
| 94 | </dependency> |
| 95 | </dependencies> |
| 96 | </plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 97 | </plugins> |
Pamela Dragosh | c4cf748 | 2017-08-14 13:40:15 -0400 | [diff] [blame] | 98 | <pluginManagement> |
| 99 | <plugins> |
| 100 | <plugin> |
| 101 | <groupId>org.eclipse.m2e</groupId> |
| 102 | <artifactId>lifecycle-mapping</artifactId> |
| 103 | <version>1.0.0</version> |
| 104 | <configuration> |
| 105 | <lifecycleMappingMetadata> |
| 106 | <pluginExecutions> |
| 107 | <pluginExecution> |
| 108 | <pluginExecutionFilter> |
| 109 | <groupId>org.apache.maven.plugins</groupId> |
| 110 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 111 | <versionRange>2.17,)</versionRange> |
| 112 | <goals> |
| 113 | <goal>check</goal> |
| 114 | </goals> |
| 115 | </pluginExecutionFilter> |
| 116 | <action> |
| 117 | <ignore /> |
| 118 | </action> |
| 119 | </pluginExecution> |
| 120 | </pluginExecutions> |
| 121 | </lifecycleMappingMetadata> |
| 122 | </configuration> |
| 123 | </plugin> |
| 124 | </plugins> |
| 125 | </pluginManagement> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 126 | </build> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 127 | <reporting> |
| 128 | <plugins> |
| 129 | <plugin> |
| 130 | <groupId>org.apache.maven.plugins</groupId> |
| 131 | <artifactId>maven-javadoc-plugin</artifactId> |
| 132 | <version>2.10.4</version> |
| 133 | <configuration> |
| 134 | <failOnError>false</failOnError> |
| 135 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 136 | <docletArtifact> |
| 137 | <groupId>org.umlgraph</groupId> |
| 138 | <artifactId>umlgraph</artifactId> |
| 139 | <version>5.6</version> |
| 140 | </docletArtifact> |
| 141 | <additionalparam>-views</additionalparam> |
| 142 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 143 | </configuration> |
| 144 | </plugin> |
| 145 | </plugins> |
| 146 | </reporting> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 147 | </project> |