-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unused plugins Update Plugin versions Add Javadoc plugin -Fix JavaDoc
- Loading branch information
Showing
21 changed files
with
111 additions
and
195 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,12 @@ | |
<mockito.version>2.11.0</mockito.version> | ||
<commons-lang3.version>3.1</commons-lang3.version> | ||
<rat.version>0.12</rat.version> | ||
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version> | ||
<maven-source-plugin.version>3.0.1</maven-source-plugin.version> | ||
<maven-javadoc-plugin.version>3.0.0-M1</maven-javadoc-plugin.version> | ||
<maven-resources-plugin.version>3.0.2</maven-resources-plugin.version> | ||
<maven-jar-plugin.version>3.0.2</maven-jar-plugin.version> | ||
<maven-surefire-plugin.version>2.20.1</maven-surefire-plugin.version> | ||
</properties> | ||
|
||
<dependencies> | ||
|
@@ -127,31 +133,21 @@ | |
</testResource> | ||
</testResources> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<version>3.0</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
|
||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.0</version> | ||
<version>${maven-compiler-plugin.version}</version> | ||
<configuration> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
<source>${jdk.version}</source> | ||
<target>${jdk.version}</target> | ||
</configuration> | ||
<source>${jdk.version}</source> | ||
<target>${jdk.version}</target> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>${maven-source-plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
|
@@ -161,18 +157,31 @@ | |
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>${maven-javadoc-plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>attach-javadocs</id> | ||
<goals> | ||
<goal>jar</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>2.4.3</version> | ||
<version>${maven-resources-plugin.version}</version> | ||
<configuration> | ||
<encoding>${project.build.sourceEncoding}</encoding> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.2</version> | ||
<version>${maven-jar-plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
|
@@ -184,111 +193,7 @@ | |
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.12</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.maven.surefire</groupId> | ||
<artifactId>surefire-junit47</artifactId> | ||
<version>2.12</version> | ||
</dependency> | ||
</dependencies> | ||
<configuration> | ||
<argLine>-XX:-UseSplitVerifier</argLine> | ||
<includes> | ||
<include>**/*.class</include> | ||
</includes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-site-plugin</artifactId> | ||
<configuration> | ||
<reportPlugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-project-info-reports-plugin</artifactId> | ||
<version>2.4</version> | ||
<reports> | ||
<report>index</report> | ||
<report>project-team</report> | ||
<report>license</report> | ||
<report>mailing-list</report> | ||
<report>dependencies</report> | ||
<report>dependency-convergence</report> | ||
<report>plugin-management</report> | ||
<report>cim</report> | ||
<report>issue-tracking</report> | ||
<report>scm</report> | ||
<report>summary</report> | ||
</reports> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jxr-plugin</artifactId> | ||
<version>2.3</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-report-plugin</artifactId> | ||
<version>2.12</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>cobertura-maven-plugin</artifactId> | ||
<version>2.5.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>taglist-maven-plugin</artifactId> | ||
<version>2.4</version> | ||
<configuration> | ||
<tagListOptions> | ||
<tagClasses> | ||
<tagClass> | ||
<displayName>TODO</displayName> | ||
<tags> | ||
<tag> | ||
<matchString>@*[Tt][oO][dD][oO]:*</matchString> | ||
<matchType>regEx</matchType> | ||
</tag> | ||
<tag> | ||
<matchString>FIXME</matchString> | ||
<matchType>exact</matchType> | ||
</tag> | ||
</tags> | ||
</tagClass> | ||
<tagClass> | ||
<displayName>Deprecated</displayName> | ||
<tags> | ||
<tag> | ||
<matchString>@deprecated</matchString> | ||
<matchType>ignoreCase</matchType> | ||
</tag> | ||
</tags> | ||
</tagClass> | ||
</tagClasses> | ||
</tagListOptions> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-pmd-plugin</artifactId> | ||
<version>2.7.1</version> | ||
<configuration> | ||
<linkXref>true</linkXref> | ||
<minimumTokens>100</minimumTokens> | ||
<minimumPriority>3</minimumPriority> | ||
<!-- Change minimum priority to see more or less messages --> | ||
<targetJdk>${jdk.version}</targetJdk> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-javadoc-plugin</artifactId> | ||
<version>2.8.1</version> | ||
</plugin> | ||
</reportPlugins> | ||
</configuration> | ||
<version>${maven-surefire-plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.rat</groupId> | ||
|
@@ -316,41 +221,6 @@ | |
</plugins> | ||
</build> | ||
|
||
<repositories> | ||
<repository> | ||
<id>org.springframework.maven.release</id> | ||
<name>Spring Maven Release Repository</name> | ||
<url>http://maven.springframework.org/release</url> | ||
<releases> | ||
<enabled>true</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
|
||
<repository> | ||
<id>org.springframework.maven.snapshot</id> | ||
<name>Spring Maven Snapshot Repository</name> | ||
<url>http://maven.springframework.org/snapshot</url> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
|
||
<repository> | ||
<id>org.springframework.maven.milestone</id> | ||
<name>Spring Maven Milestone Repository</name> | ||
<url>http://maven.springframework.org/milestone</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<licenses> | ||
<license> | ||
<name>The Apache Software License, Version 2.0</name> | ||
|
@@ -359,4 +229,16 @@ | |
</license> | ||
</licenses> | ||
|
||
<scm> | ||
<url>https://github.com/jottley/spring-social-salesforce</url> | ||
<connection>scm:git:[email protected]:jottley/spring-social-salesforce.git</connection> | ||
<developerConnection>scm:git:[email protected]:jottley/spring-social-salesforce.git</developerConnection> | ||
</scm> | ||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/jottley/spring-social-salesforce/issues</url> | ||
</issueManagement> | ||
<ciManagement> | ||
<url>https://travis-ci.org/jottley/spring-social-salesforce</url> | ||
</ciManagement> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.