Skip to content

Commit

Permalink
avoid build issues with symlink (#90)
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <olamy@apache.org>
  • Loading branch information
olamy committed Aug 16, 2020
1 parent d0b6121 commit 67c0873
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions pom.xml
Expand Up @@ -55,12 +55,12 @@ limitations under the License.
</properties>

<dependencies>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.openjdk.jmh</groupId>
<artifactId>jmh-core</artifactId>
Expand All @@ -78,6 +78,16 @@ limitations under the License.
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<!--
maven totally change his way to copy symlink
this mean the symlink is copied as a symlink and not anymore as a new file
https://issues.apache.org/jira/browse/MRESOURCES-237
-->
<version>2.7</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand Down

0 comments on commit 67c0873

Please sign in to comment.