blob: e1133f80f1ed57d28c4e3ee3c687e1ed25f3a8f4 [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>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-deploy-plugin</artifactId>
89 <version>2.8</version> <!-- This version supports the "deployAtEnd" parameter -->
90 </plugin>
91 <!--
92 license plugin
93 Run
94 mvn clean
95 before running from the command line
96 mvn license:update-file-header
97 -->
98 <plugin>
99 <groupId>org.codehaus.mojo</groupId>
100 <artifactId>license-maven-plugin</artifactId>
101 <version>1.9</version>
102 <configuration>
103 <extraExtensions>
104 <!-- Used to add or change the header style <fileTypeYouAreMapping>
105 fileTypeMappedInto </fileTypeYouAreMapping> -->
106 <drl>java</drl>
107 <ccf>properties</ccf>
108
109 <!-- Because the typical sql comment type confuses the update algorithm -->
110 <sql>java</sql>
111 </extraExtensions>
112 <licenseName>apache_v2</licenseName>
113
114 <inceptionYear>2017</inceptionYear>
115 <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
116
117 <!-- Once you have established the tags and delimiter, they cannot be
118 changed -->
119 <processStartTag>============LICENSE_START=======================================================</processStartTag>
120 <processEndTag>============LICENSE_END=========================================================</processEndTag>
121 <sectionDelimiter>================================================================================</sectionDelimiter>
122 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
123 <canUpdateCopyright>true</canUpdateCopyright>
124 <canUpdateDescription>true</canUpdateDescription>
125 <canUpdateLicense>true</canUpdateLicense>
126 <emptyLineAfterHeader>true</emptyLineAfterHeader>
127 <roots>
128 <!-- Default is src, target/generated-sources, target/processed-sources -->
129
130 <!-- Everything except the files in the excludes section -->
131 <root>/</root>
132 </roots>
133 <excludes>
134 <!-- Files which are to be excluded. The pom.xml is excluded because
135 the start/end tags and the delimiters are in the body of the file. This confuses
136 the algorithm. So, this file must be manually updated with a license header. -->
137 <exclude>pom.xml</exclude>
138 </excludes>
139 </configuration>
140 </plugin>
141 </plugins>
142 </build>
143</project>