Remove maven-license-plugin from pom.xml 99/12299/1
authorRob Daugherty <rd472p@att.com>
Wed, 13 Sep 2017 22:56:48 +0000 (18:56 -0400)
committerRob Daugherty <rd472p@att.com>
Wed, 13 Sep 2017 22:58:24 +0000 (18:58 -0400)
The Mojohaus license plug-in was previously used to add automatically
a license to a file.

Since any new file is not necessary created under the AT&T license,
the plug-in needs to be removed.

Change-Id: I58642c091308cd8067a48361bd02671f208e146b
Issue-id: SO-69
Signed-off-by: Rob Daugherty <rd472p@att.com>
pom.xml

diff --git a/pom.xml b/pom.xml
index 9601fe8..6e372fa 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                                        <source>1.8</source>
                                </configuration>
                        </plugin>
-                       <!-- license plugin -->
-                       <plugin>
-                               <groupId>org.codehaus.mojo</groupId>
-                               <artifactId>license-maven-plugin</artifactId>
-                               <version>1.10</version>
-                               <configuration>
-                                       <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
-                                       <processStartTag>============LICENSE_START=======================================================</processStartTag>
-                                       <processEndTag>============LICENSE_END=========================================================</processEndTag>
-                                       <sectionDelimiter>================================================================================</sectionDelimiter>
-                                       <licenseName>apache_v2</licenseName>
-                                       <inceptionYear>2017</inceptionYear>
-                                       <organizationName>AT&amp;T Intellectual Property. All rights reserved.</organizationName>
-                                       <projectName>ECOMP MSO</projectName>
-                                       <canUpdateCopyright>true</canUpdateCopyright>
-                                       <canUpdateDescription>true</canUpdateDescription>
-                                       <canUpdateLicense>true</canUpdateLicense>
-                                       <emptyLineAfterHeader>true</emptyLineAfterHeader>
-                               </configuration>
-                               <executions>
-                                       <execution>
-                                               <id>first</id>
-                                               <goals>
-                                                       <goal>update-file-header</goal>
-                                               </goals>
-                                               <phase>process-sources</phase>
-                                               <configuration>
-                                                       <licenseName>apache_v2</licenseName>
-                                                       <includes>
-                                                               <include>*.java</include>
-                                                               <include>*.groovy</include>
-                                                       </includes>
-                                                       <excludes>
-                                                               <exclude>*.json</exclude>
-                                                       </excludes>
-                                               </configuration>
-                                       </execution>
-                               </executions>
-                       </plugin>
                </plugins>
        </build>
        <!-- *********************************************************************************************************** -->