blob: 9e046f872d2b7feddb8b50846524ece1bd913bdf [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>
27 <version>1.0.0-SNAPSHOT</version>
28
29 <packaging>pom</packaging>
30
31 <name>ECOMP Policy Engine - Common Modules</name>
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 Dragoshcae3ccd2017-02-15 14:02:44 -050038 <nexusproxy>https://nexus.openecomp.org</nexusproxy>
Pamela Dragosha974aa02017-02-14 19:31:53 -050039 </properties>
40
41
42 <modules>
43 <module>common-logging</module>
44 <module>integrity-audit</module>
45 <module>integrity-monitor</module>
46 <module>site-manager</module>
47 </modules>
48
49 <repositories>
50 <repository>
51 <id>central</id>
52 <name>Maven 2 repository</name>
53 <url>http://repo2.maven.org/maven2/</url>
54 </repository>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050055 <repository>
56 <id>ecomp-releases</id>
57 <name>OpenECOMP Release Repository</name>
58 <url>${nexusproxy}/content/repositories/releases/</url>
59 </repository>
60 <repository>
61 <id>ecomp-staging</id>
62 <name>OpenECOMP Staging Repository</name>
63 <url>${nexusproxy}/content/repositories/staging/</url>
64 </repository>
Pamela Dragosha974aa02017-02-14 19:31:53 -050065 </repositories>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050066
67 <distributionManagement>
68 <repository>
69 <id>ecomp-releases</id>
70 <name>OpenECOMP Release Repository</name>
71 <url>${nexusproxy}/content/repositories/releases/</url>
72 </repository>
73 <snapshotRepository>
74 <id>ecomp-snapshots</id>
75 <name>OpenECOMP Snapshot Repository</name>
76 <url>${nexusproxy}/content/repositories/snapshots/</url>
77 </snapshotRepository>
78 <site>
79 <id>ecomp-javadoc</id>
Pamela Dragosh8b7cb712017-02-15 20:12:47 -050080 <url>dav:https://ecomp-nexus:8443/repository/policy-javadoc/${project.version}</url>
Pamela Dragoshcae3ccd2017-02-15 14:02:44 -050081 </site>
82 </distributionManagement>
Pamela Dragosha974aa02017-02-14 19:31:53 -050083
84 <build>
85 <plugins>
86 <plugin>
Pamela Dragosh99449372017-02-17 11:29:43 -050087 <groupId>org.sonatype.plugins</groupId>
88 <artifactId>nexus-staging-maven-plugin</artifactId>
89 <version>1.6.7</version>
90 <extensions>true</extensions>
91 <configuration>
92 <nexusUrl>${nexusproxy}</nexusUrl>
93 <stagingProfileId>176c31dfe190a</stagingProfileId>
94 <serverId>ecomp-staging</serverId>
95 </configuration>
96 </plugin>
97 <plugin>
Pamela Dragosha974aa02017-02-14 19:31:53 -050098 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-deploy-plugin</artifactId>
100 <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter -->
Pamela Dragosh99449372017-02-17 11:29:43 -0500101 <configuration>
102 <skip />
103 </configuration>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500104 </plugin>
Pamela Dragosha974aa02017-02-14 19:31:53 -0500105 <plugin>
106 <groupId>org.codehaus.mojo</groupId>
107 <artifactId>license-maven-plugin</artifactId>
108 <version>1.9</version>
109 <configuration>
110 <extraExtensions>
111 <!-- Used to add or change the header style <fileTypeYouAreMapping>
112 fileTypeMappedInto </fileTypeYouAreMapping> -->
113 <drl>java</drl>
114 <ccf>properties</ccf>
115
116 <!-- Because the typical sql comment type confuses the update algorithm -->
117 <sql>java</sql>
118 </extraExtensions>
119 <licenseName>apache_v2</licenseName>
120
121 <inceptionYear>2017</inceptionYear>
122 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
123
124 <!-- Once you have established the tags and delimiter, they cannot be
125 changed -->
126 <processStartTag>============LICENSE_START=======================================================</processStartTag>
127 <processEndTag>============LICENSE_END=========================================================</processEndTag>
128 <sectionDelimiter>================================================================================</sectionDelimiter>
129 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
130 <canUpdateCopyright>true</canUpdateCopyright>
131 <canUpdateDescription>true</canUpdateDescription>
132 <canUpdateLicense>true</canUpdateLicense>
133 <emptyLineAfterHeader>true</emptyLineAfterHeader>
134 <roots>
135 <!-- Default is src, target/generated-sources, target/processed-sources -->
136
137 <!-- Everything except the files in the excludes section -->
138 <root>/</root>
139 </roots>
140 <excludes>
141 <!-- Files which are to be excluded. The pom.xml is excluded because
142 the start/end tags and the delimiters are in the body of the file. This confuses
143 the algorithm. So, this file must be manually updated with a license header. -->
144 <exclude>pom.xml</exclude>
145 </excludes>
146 </configuration>
147 </plugin>
148 </plugins>
149 </build>
150</project>