Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 67c0873

Browse files
authored
avoid build issues with symlink (#90)
Signed-off-by: olivier lamy <[email protected]>
1 parent d0b6121 commit 67c0873

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

pom.xml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ limitations under the License.
5555
</properties>
5656

5757
<dependencies>
58-
<dependency>
59-
<groupId>org.apache.maven.shared</groupId>
60-
<artifactId>maven-plugin-testing-harness</artifactId>
61-
<version>1.1</version>
62-
<scope>test</scope>
63-
</dependency>
58+
<dependency>
59+
<groupId>org.apache.maven.shared</groupId>
60+
<artifactId>maven-plugin-testing-harness</artifactId>
61+
<version>1.1</version>
62+
<scope>test</scope>
63+
</dependency>
6464
<dependency>
6565
<groupId>org.openjdk.jmh</groupId>
6666
<artifactId>jmh-core</artifactId>
@@ -78,6 +78,16 @@ limitations under the License.
7878
<build>
7979
<pluginManagement>
8080
<plugins>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-resources-plugin</artifactId>
84+
<!--
85+
maven totally change his way to copy symlink
86+
this mean the symlink is copied as a symlink and not anymore as a new file
87+
https://issues.apache.org/jira/browse/MRESOURCES-237
88+
-->
89+
<version>2.7</version>
90+
</plugin>
8191
<plugin>
8292
<groupId>org.apache.maven.plugins</groupId>
8393
<artifactId>maven-javadoc-plugin</artifactId>

0 commit comments

Comments
 (0)