aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2017-07-19 11:22:32 -0700
committerPatrick Brady <pb071s@att.com>2017-07-19 13:10:04 -0700
commitfd8bc37fefc87d226fccb8aff3814e9f86cdc18f (patch)
tree05dbd16800e1796b1b328db8f70f7b1ee149d30c /pom.xml
parentf657391dcf4fe576fef9a464a9ef549b91ff1013 (diff)
Adding custom license for maven license plugin
[APPC-87] Fix Maven License Plugin Change-Id: If19274f46b2eaf83539642d313130bdcfa6a9eb7 Signed-off-by: Patrick Brady <pb071s@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml13
1 files changed, 9 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index d6df08d31..faa9ebbcb 100644
--- a/pom.xml
+++ b/pom.xml
@@ -528,16 +528,21 @@
<artifactId>license-maven-plugin</artifactId>
<version>1.10</version>
<configuration>
+ <extraExtensions>
+ <yml>properties</yml>
+ <yang>java</yang>
+ </extraExtensions>
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
<processStartTag>============LICENSE_START=======================================================</processStartTag>
<processEndTag>============LICENSE_END=========================================================</processEndTag>
<sectionDelimiter>================================================================================</sectionDelimiter>
- <licenseName>apache_v2</licenseName>
+ <licenseName>appc</licenseName>
+ <!-- This should point to the license directory of the root folder of the base appc project -->
+ <licenseResolver>file:${user.dir}/license</licenseResolver>
<inceptionYear>2017</inceptionYear>
<organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
- <projectName>APPC</projectName>
- <!-- Do not automatically update copyright since Amdocs needs to be included manually -->
- <canUpdateCopyright>false</canUpdateCopyright>
+ <projectName>ONAP : APPC</projectName>
+ <canUpdateCopyright>true</canUpdateCopyright>
<canUpdateDescription>true</canUpdateDescription>
<canUpdateLicense>true</canUpdateLicense>
<emptyLineAfterHeader>true</emptyLineAfterHeader>