Skip to content

Commit 7c86780

Browse files
authored
fix symlink test issue (#24)
* fix symlink issue Signed-off-by: olivier lamy <olamy@apache.org> * upgrade parent Signed-off-by: olivier lamy <olamy@apache.org> * fix javadoc with jdk15 Signed-off-by: olivier lamy <olamy@apache.org>
1 parent 806f4bc commit 7c86780

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

pom.xml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.codehaus.plexus</groupId>
66
<artifactId>plexus</artifactId>
7-
<version>6.1</version>
7+
<version>6.4</version>
88
</parent>
99

1010
<artifactId>plexus-io</artifactId>
@@ -69,10 +69,6 @@
6969

7070
<build>
7171
<plugins>
72-
<plugin>
73-
<groupId>org.apache.maven.plugins</groupId>
74-
<artifactId>maven-compiler-plugin</artifactId>
75-
</plugin>
7672
<plugin>
7773
<groupId>org.apache.maven.plugins</groupId>
7874
<artifactId>maven-scm-publish-plugin</artifactId>
@@ -137,6 +133,16 @@
137133
</signature>
138134
</configuration>
139135
</plugin>
136+
<plugin>
137+
<groupId>org.apache.maven.plugins</groupId>
138+
<artifactId>maven-resources-plugin</artifactId>
139+
<!--
140+
maven totally change his way to copy symlink
141+
this mean the symlink is copied as a symlink and not anymore as a new file
142+
https://issues.apache.org/jira/browse/MRESOURCES-237
143+
-->
144+
<version>2.7</version>
145+
</plugin>
140146
</plugins>
141147
</build>
142148
</project>

src/main/java/org/codehaus/plexus/components/io/filemappers/package.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<html><head><title>File Mappers</title></head>
2-
<body><h1>File Mappers</h1>
2+
<body><p><b>File Mappers</b></p>
33
<p>File mappers can be used, for example, when files are being copied, moved, archived, or unarchived.
44
The purpose of a file mapper is to select the target files name and destination.</p>
55
<p>Examples:</p>

src/main/java/org/codehaus/plexus/components/io/fileselectors/package.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<html><head><title>File Selectors</title></head>
2-
<body><h1>File Selectors</h1>
2+
<body><p><b>File Selectors</b></p>
33
<p>File selectors can be used to select or deselect a subset of files.
44
For example, the plexus archivers or unarchivers use file selectors
55
for selecting a subset of files in a directory.</p>

src/main/java/org/codehaus/plexus/components/io/resources/package.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<html><head><title>Resources and Resource Collections</title></head>
2-
<body><h1>Resources and Resource Collections</h1>
2+
<body><p><b>Resources and Resource Collections</b></p>
33
<p>This package implements ideas, which have been shamelessly
44
copied from Ants resource collection framework. Basically,
55
a resource is an abstraction of file-like entities: An actual

0 commit comments

Comments
 (0)