blob: f43aa0c6dc3df341f77fc20e95f732660bb10d77 [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 ================================================================================
Jim Hahne9fd35a2018-02-07 17:13:32 -05005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Pamela Dragosha974aa02017-02-14 19:31:53 -05006 ================================================================================
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>
Pamela Dragosha4a403d2017-09-21 11:02:36 -040028 <version>0.1.1</version>
Guo Ruijinga790f402017-08-03 09:05:02 +000029 <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>
Jessica Wagantall91a49e92017-11-18 18:34:43 -080034 <version>1.2.0-SNAPSHOT</version>
Pamela Dragosha974aa02017-02-14 19:31:53 -050035
36 <packaging>pom</packaging>
37
Jessica Wagantallba467172017-09-08 11:45:08 -070038 <name>policy-common</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>
Jim Hahne9fd35a2018-02-07 17:13:32 -050044 <logback.version>1.2.3</logback.version>
Jim Hahn86664072018-02-09 12:20:56 -050045 <javax.persistence.api.version>1.0.2</javax.persistence.api.version>
Pamela Dragosha974aa02017-02-14 19:31:53 -050046 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Pamela Dragoshffaa6ad2017-03-30 09:32:18 -040047 <nexusproxy>https://nexus.onap.org</nexusproxy>
Pamela Dragosh8a986b22017-04-10 13:32:38 -040048 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
Anaƫl Clossonc2aad652017-04-12 12:38:57 +020049 <releases.path>content/repositories/releases/</releases.path>
50 <snapshots.path>content/repositories/snapshots/</snapshots.path>
51 <staging.path>content/repositories/staging/</staging.path>
Pamela Dragosha974aa02017-02-14 19:31:53 -050052 </properties>
53
54
55 <modules>
Jim Hahn82bc8f52018-02-05 12:05:26 -050056 <module>utils-test</module>
Jim Hahn86664072018-02-09 12:20:56 -050057 <module>utils</module>
Pamela Dragosha974aa02017-02-14 19:31:53 -050058 <module>common-logging</module>
59 <module>integrity-audit</module>
60 <module>integrity-monitor</module>
Pamela Dragosh9dbb6402017-07-31 11:13:03 -040061 <module>site-manager</module>
Pamela Dragosha974aa02017-02-14 19:31:53 -050062 </modules>
63
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050064 <distributionManagement>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050065 <site>
Pamela Dragosh205fba22017-07-31 15:14:59 -040066 <id>ecomp-site</id>
Pamela Dragosh8a986b22017-04-10 13:32:38 -040067 <url>dav:${nexusproxy}${sitePath}</url>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050068 </site>
69 </distributionManagement>
Pamela Dragosha974aa02017-02-14 19:31:53 -050070
Pamela Dragoshf391f8a2017-11-10 19:18:46 -050071 <repositories>
72 <!-- LF repositories -->
73 <repository>
74 <id>ecomp-releases</id>
75 <name>Release Repository</name>
76 <url>${nexusproxy}/content/repositories/releases/</url>
77 </repository>
78 <repository>
79 <id>ecomp-staging</id>
80 <name>Staging Repository</name>
81 <url>${nexusproxy}/content/repositories/staging/</url>
82 </repository>
83 <repository>
84 <id>ecomp-snapshots</id>
85 <name>Snapshots Repository</name>
86 <url>${nexusproxy}/content/repositories/snapshots/</url>
87 </repository>
88 <repository>
89 <id>ecomp-public</id>
90 <name>Public Repository</name>
91 <url>${nexusproxy}/content/repositories/public/</url>
92 </repository>
93 <!-- LF repositories END-->
94 </repositories>
95
Pamela Dragosha974aa02017-02-14 19:31:53 -050096 <build>
97 <plugins>
98 <plugin>
Pamela Dragosh99449372017-02-17 11:29:43 -050099 <groupId>org.sonatype.plugins</groupId>
100 <artifactId>nexus-staging-maven-plugin</artifactId>
Pamela Dragosh99449372017-02-17 11:29:43 -0500101 <extensions>true</extensions>
102 <configuration>
103 <nexusUrl>${nexusproxy}</nexusUrl>
104 <stagingProfileId>176c31dfe190a</stagingProfileId>
Pamela Dragoshd83dab12017-07-31 21:09:20 -0400105 <serverId>ecomp-staging</serverId>
Pamela Dragosh99449372017-02-17 11:29:43 -0500106 </configuration>
107 </plugin>
108 <plugin>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-deploy-plugin</artifactId>
Pamela Dragosh99449372017-02-17 11:29:43 -0500111 <configuration>
112 <skip />
113 </configuration>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500114 </plugin>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500115 <plugin>
Pamela Dragosh8a986b22017-04-10 13:32:38 -0400116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-site-plugin</artifactId>
Pamela Dragosh8a986b22017-04-10 13:32:38 -0400118 <dependencies>
119 <dependency>
120 <groupId>org.apache.maven.wagon</groupId>
121 <artifactId>wagon-webdav-jackrabbit</artifactId>
122 <version>2.10</version>
123 </dependency>
124 </dependencies>
125 </plugin>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500126 </plugins>
Pamela Dragoshc4cf7482017-08-14 13:40:15 -0400127 <pluginManagement>
128 <plugins>
129 <plugin>
130 <groupId>org.eclipse.m2e</groupId>
131 <artifactId>lifecycle-mapping</artifactId>
132 <version>1.0.0</version>
133 <configuration>
134 <lifecycleMappingMetadata>
135 <pluginExecutions>
136 <pluginExecution>
137 <pluginExecutionFilter>
138 <groupId>org.apache.maven.plugins</groupId>
139 <artifactId>maven-checkstyle-plugin</artifactId>
140 <versionRange>2.17,)</versionRange>
141 <goals>
142 <goal>check</goal>
143 </goals>
144 </pluginExecutionFilter>
145 <action>
146 <ignore />
147 </action>
148 </pluginExecution>
149 </pluginExecutions>
150 </lifecycleMappingMetadata>
151 </configuration>
152 </plugin>
153 </plugins>
154 </pluginManagement>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500155 </build>
Pamela Dragosh8a986b22017-04-10 13:32:38 -0400156 <reporting>
157 <plugins>
158 <plugin>
159 <groupId>org.apache.maven.plugins</groupId>
160 <artifactId>maven-javadoc-plugin</artifactId>
161 <version>2.10.4</version>
162 <configuration>
163 <failOnError>false</failOnError>
164 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
165 <docletArtifact>
166 <groupId>org.umlgraph</groupId>
167 <artifactId>umlgraph</artifactId>
168 <version>5.6</version>
169 </docletArtifact>
170 <additionalparam>-views</additionalparam>
171 <useStandardDocletOptions>true</useStandardDocletOptions>
172 </configuration>
173 </plugin>
174 </plugins>
175 </reporting>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500176</project>