Skip to content

Commit f6aa291

Browse files
committed
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
1 parent 369b798 commit f6aa291

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@
119119
<maven.compiler.version>3.8.1</maven.compiler.version> <!-- max version allowed for JDK 7 builds -->
120120
<maven.javadoc.version>3.1.1</maven.javadoc.version> <!-- max version allowed for JDK 7 builds -->
121121
<maven.source.version>3.2.1</maven.source.version>
122+
<maven.resources.version>3.1.0</maven.resources.version>
122123
<maven.gpg.version>1.6</maven.gpg.version> <!-- max version allowed for JDK 7 builds -->
123124
<maven.japicmp.version>0.13.1</maven.japicmp.version> <!-- max version allowed for JDK 7 builds -->
124125
<gmavenplus.version>1.6.1</gmavenplus.version> <!-- higher version used in jdk8AndLater profile below -->
@@ -357,6 +358,11 @@
357358
</execution>
358359
</executions>
359360
</plugin>
361+
<plugin>
362+
<groupId>org.apache.maven.plugins</groupId>
363+
<artifactId>maven-resources-plugin</artifactId>
364+
<version>${maven.resources.version}</version>
365+
</plugin>
360366
<plugin>
361367
<groupId>org.apache.maven.plugins</groupId>
362368
<artifactId>maven-gpg-plugin</artifactId>

0 commit comments

Comments
 (0)