Skip to content

Commit

Permalink
Update Maven plugins
Browse files Browse the repository at this point in the history
- maven-assembly-plugin    2.5.5  -> 3.2.0
- maven-compiler-plugin    3.5.1  -> 3.8.1
- maven-dependency-plugin  2.10   -> 3.1.1
- maven-javadoc-plugin     2.10.3 -> 3.1.1
- maven-release-plugin     2.5.3  -> 3.0.0-M1

Fixes: mpassid#1
  • Loading branch information
edysli committed Feb 12, 2020
1 parent 3c6a2cf commit bef0128
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion idp-authn-impl-shibsp/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@ THE SOFTWARE.
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<tarLongFileMode>posix</tarLongFileMode>
<descriptor>src/main/assembly/dep.xml</descriptor>
<descriptors>
<descriptor>src/main/assembly/dep.xml</descriptor>
</descriptors>
<finalName>shibboleth-idp-authn-shibsp-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<outputDirectory>../target</outputDirectory>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ THE SOFTWARE.

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.version>3.5.1</maven.compiler.version>
<maven.compiler.version>3.8.1</maven.compiler.version>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<shib.idp.version>3.4.1</shib.idp.version>
Expand Down Expand Up @@ -338,11 +338,11 @@ THE SOFTWARE.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<version>3.1.1</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.5</version>
<version>3.2.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -362,12 +362,12 @@ THE SOFTWARE.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<version>3.1.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<version>3.0.0-M1</version>
</plugin>
</plugins>
</pluginManagement>
Expand Down

0 comments on commit bef0128

Please sign in to comment.