blob: 24291e73cf42b33c1f6bdf9e5f29c02f0882cb14 [file] [log] [blame]
Pamela Dragosha974aa02017-02-14 19:31:53 -05001<!--
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 Dragoshd37552e2017-03-10 13:01:28 -050027 <version>1.1.0-SNAPSHOT</version>
Pamela Dragosha974aa02017-02-14 19:31:53 -050028
29 <packaging>pom</packaging>
30
Pamela Dragosh1c09be62017-04-28 10:50:47 -040031 <name>Policy Engine - Common Modules</name>
Pamela Dragosha974aa02017-02-14 19:31:53 -050032 <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 Dragoshffaa6ad2017-03-30 09:32:18 -040038 <nexusproxy>https://nexus.onap.org</nexusproxy>
Pamela Dragosh8a986b22017-04-10 13:32:38 -040039 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
Anaël Clossonc2aad652017-04-12 12:38:57 +020040 <releases.path>content/repositories/releases/</releases.path>
41 <snapshots.path>content/repositories/snapshots/</snapshots.path>
42 <staging.path>content/repositories/staging/</staging.path>
Pamela Dragosha974aa02017-02-14 19:31:53 -050043 </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 Dragosha972b6a2017-03-10 11:28:23 -050057 <url>http://central.maven.org/maven2/</url>
Pamela Dragosha974aa02017-02-14 19:31:53 -050058 </repository>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050059 <repository>
60 <id>ecomp-releases</id>
61 <name>OpenECOMP Release Repository</name>
Anaël Clossonc2aad652017-04-12 12:38:57 +020062 <url>${nexusproxy}/${releases.path}</url>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050063 </repository>
64 <repository>
65 <id>ecomp-staging</id>
66 <name>OpenECOMP Staging Repository</name>
Anaël Clossonc2aad652017-04-12 12:38:57 +020067 <url>${nexusproxy}/${staging.path}</url>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050068 </repository>
Pamela Dragosha974aa02017-02-14 19:31:53 -050069 </repositories>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050070
71 <distributionManagement>
72 <repository>
73 <id>ecomp-releases</id>
74 <name>OpenECOMP Release Repository</name>
Anaël Clossonc2aad652017-04-12 12:38:57 +020075 <url>${nexusproxy}/${releases.path}</url>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050076 </repository>
77 <snapshotRepository>
78 <id>ecomp-snapshots</id>
79 <name>OpenECOMP Snapshot Repository</name>
Anaël Clossonc2aad652017-04-12 12:38:57 +020080 <url>${nexusproxy}/${snapshots.path}</url>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050081 </snapshotRepository>
82 <site>
Pamela Dragosh8a986b22017-04-10 13:32:38 -040083 <id>ecomp-site</id>
84 <url>dav:${nexusproxy}${sitePath}</url>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050085 </site>
86 </distributionManagement>
Pamela Dragosha974aa02017-02-14 19:31:53 -050087
88 <build>
89 <plugins>
90 <plugin>
Pamela Dragosh99449372017-02-17 11:29:43 -050091 <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 Dragosha974aa02017-02-14 19:31:53 -0500102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-deploy-plugin</artifactId>
104 <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter -->
Pamela Dragosh99449372017-02-17 11:29:43 -0500105 <configuration>
106 <skip />
107 </configuration>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500108 </plugin>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500109 <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&amp;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 Dragosh8a986b22017-04-10 13:32:38 -0400152 <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 Dragosha974aa02017-02-14 19:31:53 -0500164 </plugins>
165 </build>
Pamela Dragosh8a986b22017-04-10 13:32:38 -0400166 <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 Dragosha974aa02017-02-14 19:31:53 -0500186</project>