blob: c9810fbb039126e52467dd25b1d913b5a18b8403 [file] [log] [blame]
Pamela Dragosha974aa02017-02-14 19:31:53 -05001<!--
2 ============LICENSE_START=======================================================
Guo Ruijingf8a620d2017-07-28 08:21:14 +00003 ONAP Policy Engine - Drools PDP
Pamela Dragosha974aa02017-02-14 19:31:53 -05004 ================================================================================
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 Ruijinga790f402017-08-03 09:05:02 +000025 <parent>
26 <groupId>org.onap.oparent</groupId>
27 <artifactId>oparent</artifactId>
28 <version>1.0.0-SNAPSHOT</version>
29 <relativePath/>
30 </parent>
31
Guo Ruijingf8a620d2017-07-28 08:21:14 +000032 <groupId>org.onap.policy.common</groupId>
Pamela Dragosha974aa02017-02-14 19:31:53 -050033 <artifactId>common-modules</artifactId>
Pamela Dragoshd37552e2017-03-10 13:01:28 -050034 <version>1.1.0-SNAPSHOT</version>
Pamela Dragosha974aa02017-02-14 19:31:53 -050035
36 <packaging>pom</packaging>
37
Pamela Dragosh1c09be62017-04-28 10:50:47 -040038 <name>Policy Engine - Common Modules</name>
Pamela Dragosha974aa02017-02-14 19:31:53 -050039 <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 Dragoshffaa6ad2017-03-30 09:32:18 -040045 <nexusproxy>https://nexus.onap.org</nexusproxy>
Pamela Dragosh8a986b22017-04-10 13:32:38 -040046 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
Anaƫl Clossonc2aad652017-04-12 12:38:57 +020047 <releases.path>content/repositories/releases/</releases.path>
48 <snapshots.path>content/repositories/snapshots/</snapshots.path>
49 <staging.path>content/repositories/staging/</staging.path>
Pamela Dragosha974aa02017-02-14 19:31:53 -050050 </properties>
51
52
53 <modules>
54 <module>common-logging</module>
55 <module>integrity-audit</module>
56 <module>integrity-monitor</module>
Pamela Dragosh9dbb6402017-07-31 11:13:03 -040057 <module>site-manager</module>
Pamela Dragosha974aa02017-02-14 19:31:53 -050058 </modules>
59
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050060 <distributionManagement>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050061 <site>
Pamela Dragosh205fba22017-07-31 15:14:59 -040062 <id>ecomp-site</id>
Pamela Dragosh8a986b22017-04-10 13:32:38 -040063 <url>dav:${nexusproxy}${sitePath}</url>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050064 </site>
65 </distributionManagement>
Pamela Dragosha974aa02017-02-14 19:31:53 -050066
67 <build>
68 <plugins>
69 <plugin>
Pamela Dragosh99449372017-02-17 11:29:43 -050070 <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 Dragoshd83dab12017-07-31 21:09:20 -040077 <serverId>ecomp-staging</serverId>
Pamela Dragosh99449372017-02-17 11:29:43 -050078 </configuration>
79 </plugin>
80 <plugin>
Pamela Dragosha974aa02017-02-14 19:31:53 -050081 <groupId>org.apache.maven.plugins</groupId>
82 <artifactId>maven-deploy-plugin</artifactId>
83 <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter -->
Pamela Dragosh99449372017-02-17 11:29:43 -050084 <configuration>
85 <skip />
86 </configuration>
Pamela Dragosha974aa02017-02-14 19:31:53 -050087 </plugin>
Pamela Dragosha974aa02017-02-14 19:31:53 -050088 <plugin>
Pamela Dragosh8a986b22017-04-10 13:32:38 -040089 <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 Dragosha974aa02017-02-14 19:31:53 -0500100 </plugins>
101 </build>
Pamela Dragosh8a986b22017-04-10 13:32:38 -0400102 <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 Dragosha974aa02017-02-14 19:31:53 -0500122</project>