aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorITSERVICES\cr056n <cr056n@att.com>2017-08-14 09:46:27 -0700
committerTemoc Rodriguez <cr056n@att.com>2017-08-15 10:34:33 -0700
commit29596e4cba9a7532569a05062fba5280b504070b (patch)
treeb5ef40741cf672fde30026be5222f5178eb88858 /pom.xml
parentce1cf85647ab1ae3c292fd1b1286ea0dbb56223f (diff)
Remove MojoHaus Maven plug-in
Remove MojoHaus Maven plug-in from pom files, BRMSPush.java, and settings.xml comment. Issue-Id: POLICY-116 Change-Id: I15f2d1af1c0e12faf816f0a08ddfdbffa0b47a94 Signed-off-by: Temoc Rodriguez <cr056n@att.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml50
1 files changed, 2 insertions, 48 deletions
diff --git a/pom.xml b/pom.xml
index 17faafcf8..6a3f947b6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
<project.source.version>1.8</project.source.version>
<project.target.version>1.8</project.target.version>
<project.encoding>UTF-8</project.encoding>
-
+
<sonar.language>java</sonar.language>
<sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
<sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
@@ -143,52 +143,6 @@
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
</plugin>
- <!-- license plugin Run mvn clean before running from the command line
- mvn license:update-file-header -->
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>license-maven-plugin</artifactId>
- <version>1.9</version>
- <configuration>
- <extraExtensions>
- <!-- Used to add or change the header style <fileTypeYouAreMapping>
- fileTypeMappedInto </fileTypeYouAreMapping> -->
- <drl>java</drl>
- <ccf>properties</ccf>
-
- <!-- Because the typical sql comment type confuses the update algorithm -->
- <sql>java</sql>
- </extraExtensions>
- <licenseName>apache_v2</licenseName>
-
- <inceptionYear>2017</inceptionYear>
- <organizationName>AT&amp;T Intellectual Property. All rights
- reserved.</organizationName>
-
- <!-- Once you have established the tags and delimiter, they cannot be
- changed -->
- <processStartTag>============LICENSE_START=======================================================</processStartTag>
- <processEndTag>============LICENSE_END=========================================================</processEndTag>
- <sectionDelimiter>================================================================================</sectionDelimiter>
- <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
- <canUpdateCopyright>true</canUpdateCopyright>
- <canUpdateDescription>true</canUpdateDescription>
- <canUpdateLicense>true</canUpdateLicense>
- <emptyLineAfterHeader>true</emptyLineAfterHeader>
- <roots>
- <!-- Default is src, target/generated-sources, target/processed-sources -->
-
- <!-- Everything except the files in the excludes section -->
- <root>/</root>
- </roots>
- <excludes>
- <!-- Files which are to be excluded. The pom.xml is excluded because
- the start/end tags and the delimiters are in the body of the file. This confuses
- the algorithm. So, this file must be manually updated with a license header. -->
- <exclude>pom.xml</exclude>
- </excludes>
- </configuration>
- </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@@ -215,7 +169,7 @@
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
- <!-- The Jetty plugin allows us to easily test the development build by
+ <!-- The Jetty plugin allows us to easily test the development build by
running jetty:run on the command line. -->
<plugin>