Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ECOMP Policy Engine - Drools PDP |
| 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 | |
| 25 | <groupId>org.openecomp.policy.common</groupId> |
| 26 | <artifactId>common-modules</artifactId> |
Pamela Dragosh | d37552e | 2017-03-10 13:01:28 -0500 | [diff] [blame] | 27 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 28 | |
| 29 | <packaging>pom</packaging> |
| 30 | |
Pamela Dragosh | 1c09be6 | 2017-04-28 10:50:47 -0400 | [diff] [blame^] | 31 | <name>Policy Engine - Common Modules</name> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 32 | <description>Common Modules for Policy-Engine in both XACML and Drools flavor</description> |
| 33 | |
| 34 | <properties> |
| 35 | <maven.compiler.source>1.8</maven.compiler.source> |
| 36 | <maven.compiler.target>1.8</maven.compiler.target> |
| 37 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
Pamela Dragosh | ffaa6ad | 2017-03-30 09:32:18 -0400 | [diff] [blame] | 38 | <nexusproxy>https://nexus.onap.org</nexusproxy> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 39 | <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath> |
Anaël Closson | c2aad65 | 2017-04-12 12:38:57 +0200 | [diff] [blame] | 40 | <releases.path>content/repositories/releases/</releases.path> |
| 41 | <snapshots.path>content/repositories/snapshots/</snapshots.path> |
| 42 | <staging.path>content/repositories/staging/</staging.path> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 43 | </properties> |
| 44 | |
| 45 | |
| 46 | <modules> |
| 47 | <module>common-logging</module> |
| 48 | <module>integrity-audit</module> |
| 49 | <module>integrity-monitor</module> |
| 50 | <module>site-manager</module> |
| 51 | </modules> |
| 52 | |
| 53 | <repositories> |
| 54 | <repository> |
| 55 | <id>central</id> |
| 56 | <name>Maven 2 repository</name> |
Pamela Dragosh | a972b6a | 2017-03-10 11:28:23 -0500 | [diff] [blame] | 57 | <url>http://central.maven.org/maven2/</url> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 58 | </repository> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 59 | <repository> |
| 60 | <id>ecomp-releases</id> |
| 61 | <name>OpenECOMP Release Repository</name> |
Anaël Closson | c2aad65 | 2017-04-12 12:38:57 +0200 | [diff] [blame] | 62 | <url>${nexusproxy}/${releases.path}</url> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 63 | </repository> |
| 64 | <repository> |
| 65 | <id>ecomp-staging</id> |
| 66 | <name>OpenECOMP Staging Repository</name> |
Anaël Closson | c2aad65 | 2017-04-12 12:38:57 +0200 | [diff] [blame] | 67 | <url>${nexusproxy}/${staging.path}</url> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 68 | </repository> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 69 | </repositories> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 70 | |
| 71 | <distributionManagement> |
| 72 | <repository> |
| 73 | <id>ecomp-releases</id> |
| 74 | <name>OpenECOMP Release Repository</name> |
Anaël Closson | c2aad65 | 2017-04-12 12:38:57 +0200 | [diff] [blame] | 75 | <url>${nexusproxy}/${releases.path}</url> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 76 | </repository> |
| 77 | <snapshotRepository> |
| 78 | <id>ecomp-snapshots</id> |
| 79 | <name>OpenECOMP Snapshot Repository</name> |
Anaël Closson | c2aad65 | 2017-04-12 12:38:57 +0200 | [diff] [blame] | 80 | <url>${nexusproxy}/${snapshots.path}</url> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 81 | </snapshotRepository> |
| 82 | <site> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 83 | <id>ecomp-site</id> |
| 84 | <url>dav:${nexusproxy}${sitePath}</url> |
Pamela Dragosh | cae3ccd | 2017-02-15 14:02:44 -0500 | [diff] [blame] | 85 | </site> |
| 86 | </distributionManagement> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 87 | |
| 88 | <build> |
| 89 | <plugins> |
| 90 | <plugin> |
Pamela Dragosh | 9944937 | 2017-02-17 11:29:43 -0500 | [diff] [blame] | 91 | <groupId>org.sonatype.plugins</groupId> |
| 92 | <artifactId>nexus-staging-maven-plugin</artifactId> |
| 93 | <version>1.6.7</version> |
| 94 | <extensions>true</extensions> |
| 95 | <configuration> |
| 96 | <nexusUrl>${nexusproxy}</nexusUrl> |
| 97 | <stagingProfileId>176c31dfe190a</stagingProfileId> |
| 98 | <serverId>ecomp-staging</serverId> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | <plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 102 | <groupId>org.apache.maven.plugins</groupId> |
| 103 | <artifactId>maven-deploy-plugin</artifactId> |
| 104 | <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter --> |
Pamela Dragosh | 9944937 | 2017-02-17 11:29:43 -0500 | [diff] [blame] | 105 | <configuration> |
| 106 | <skip /> |
| 107 | </configuration> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 108 | </plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 109 | <plugin> |
| 110 | <groupId>org.codehaus.mojo</groupId> |
| 111 | <artifactId>license-maven-plugin</artifactId> |
| 112 | <version>1.9</version> |
| 113 | <configuration> |
| 114 | <extraExtensions> |
| 115 | <!-- Used to add or change the header style <fileTypeYouAreMapping> |
| 116 | fileTypeMappedInto </fileTypeYouAreMapping> --> |
| 117 | <drl>java</drl> |
| 118 | <ccf>properties</ccf> |
| 119 | |
| 120 | <!-- Because the typical sql comment type confuses the update algorithm --> |
| 121 | <sql>java</sql> |
| 122 | </extraExtensions> |
| 123 | <licenseName>apache_v2</licenseName> |
| 124 | |
| 125 | <inceptionYear>2017</inceptionYear> |
| 126 | <organizationName>AT&T Intellectual Property. All rights reserved.</organizationName> |
| 127 | |
| 128 | <!-- Once you have established the tags and delimiter, they cannot be |
| 129 | changed --> |
| 130 | <processStartTag>============LICENSE_START=======================================================</processStartTag> |
| 131 | <processEndTag>============LICENSE_END=========================================================</processEndTag> |
| 132 | <sectionDelimiter>================================================================================</sectionDelimiter> |
| 133 | <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> |
| 134 | <canUpdateCopyright>true</canUpdateCopyright> |
| 135 | <canUpdateDescription>true</canUpdateDescription> |
| 136 | <canUpdateLicense>true</canUpdateLicense> |
| 137 | <emptyLineAfterHeader>true</emptyLineAfterHeader> |
| 138 | <roots> |
| 139 | <!-- Default is src, target/generated-sources, target/processed-sources --> |
| 140 | |
| 141 | <!-- Everything except the files in the excludes section --> |
| 142 | <root>/</root> |
| 143 | </roots> |
| 144 | <excludes> |
| 145 | <!-- Files which are to be excluded. The pom.xml is excluded because |
| 146 | the start/end tags and the delimiters are in the body of the file. This confuses |
| 147 | the algorithm. So, this file must be manually updated with a license header. --> |
| 148 | <exclude>pom.xml</exclude> |
| 149 | </excludes> |
| 150 | </configuration> |
| 151 | </plugin> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 152 | <plugin> |
| 153 | <groupId>org.apache.maven.plugins</groupId> |
| 154 | <artifactId>maven-site-plugin</artifactId> |
| 155 | <version>3.6</version> |
| 156 | <dependencies> |
| 157 | <dependency> |
| 158 | <groupId>org.apache.maven.wagon</groupId> |
| 159 | <artifactId>wagon-webdav-jackrabbit</artifactId> |
| 160 | <version>2.10</version> |
| 161 | </dependency> |
| 162 | </dependencies> |
| 163 | </plugin> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 164 | </plugins> |
| 165 | </build> |
Pamela Dragosh | 8a986b2 | 2017-04-10 13:32:38 -0400 | [diff] [blame] | 166 | <reporting> |
| 167 | <plugins> |
| 168 | <plugin> |
| 169 | <groupId>org.apache.maven.plugins</groupId> |
| 170 | <artifactId>maven-javadoc-plugin</artifactId> |
| 171 | <version>2.10.4</version> |
| 172 | <configuration> |
| 173 | <failOnError>false</failOnError> |
| 174 | <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> |
| 175 | <docletArtifact> |
| 176 | <groupId>org.umlgraph</groupId> |
| 177 | <artifactId>umlgraph</artifactId> |
| 178 | <version>5.6</version> |
| 179 | </docletArtifact> |
| 180 | <additionalparam>-views</additionalparam> |
| 181 | <useStandardDocletOptions>true</useStandardDocletOptions> |
| 182 | </configuration> |
| 183 | </plugin> |
| 184 | </plugins> |
| 185 | </reporting> |
Pamela Dragosh | a974aa0 | 2017-02-14 19:31:53 -0500 | [diff] [blame] | 186 | </project> |