mirror of https://github.com/jwtk/jjwt.git
Pins version of maven-resources-plugin to 3.1.0
Versions after this fail to copy symlinks (used for impl crypto tests) This should be fixed in a future version of the maven-resources-plugin (MRESOURCES-269), but should be pinned anyway
This commit is contained in:
parent
369b798d39
commit
f6aa291e94
6
pom.xml
6
pom.xml
|
@ -119,6 +119,7 @@
|
|||
<maven.compiler.version>3.8.1</maven.compiler.version> <!-- max version allowed for JDK 7 builds -->
|
||||
<maven.javadoc.version>3.1.1</maven.javadoc.version> <!-- max version allowed for JDK 7 builds -->
|
||||
<maven.source.version>3.2.1</maven.source.version>
|
||||
<maven.resources.version>3.1.0</maven.resources.version>
|
||||
<maven.gpg.version>1.6</maven.gpg.version> <!-- max version allowed for JDK 7 builds -->
|
||||
<maven.japicmp.version>0.13.1</maven.japicmp.version> <!-- max version allowed for JDK 7 builds -->
|
||||
<gmavenplus.version>1.6.1</gmavenplus.version> <!-- higher version used in jdk8AndLater profile below -->
|
||||
|
@ -357,6 +358,11 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-resources-plugin</artifactId>
|
||||
<version>${maven.resources.version}</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
|
|
Loading…
Reference in New Issue