Skip to content

Commit cc9b57b

Browse files
committed
1 parent 7a45692 commit cc9b57b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

pom.xml

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@
77
<version>5.1</version>
88
</parent>
99

10+
<groupId>org.evolvis.tartools.forked</groupId>
1011
<artifactId>plexus-io</artifactId>
1112
<version>3.2.0</version>
1213

1314
<name>Plexus IO Components</name>
1415

1516
<scm>
16-
<connection>scm:git:[email protected]:codehaus-plexus/plexus-io.git</connection>
17-
<developerConnection>scm:git:[email protected]:codehaus-plexus/plexus-io.git</developerConnection>
18-
<url>http://github.com/codehaus-plexus/plexus-io</url>
19-
<tag>plexus-io-3.2.0</tag>
17+
<connection>scm:git:[email protected]:tarent/plexus-io.git</connection>
18+
<developerConnection>scm:git:[email protected]:tarent/plexus-io.git</developerConnection>
19+
<url>http://github.com/tarent/plexus-io</url>
20+
<tag>plexus-io-3.2.0-follow-symlinks</tag>
2021
</scm>
2122
<issueManagement>
2223
<system>jira</system>

src/main/java/org/codehaus/plexus/components/io/resources/ResourceFactory.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ public static PlexusIoResource createResource( File f, String name, final Conten
5252
PlexusIoResourceAttributes attributes )
5353
throws IOException
5454
{
55-
boolean symbolicLink = attributes.isSymbolicLink();
55+
boolean symbolicLink = false;//attributes.isSymbolicLink();
56+
System.err.println("moo");
5657
return symbolicLink ? new PlexusIoSymlinkResource( f, name, attributes )
5758
: new PlexusIoFileResource(f, name, attributes, contentSupplier, inputStreamTransformer);
5859
}

0 commit comments

Comments
 (0)