Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
mirabilos committed Jan 8, 2021
1 parent 7a45692 commit cc9b57b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
9 changes: 5 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,17 @@
<version>5.1</version>
</parent>

<groupId>org.evolvis.tartools.forked</groupId>
<artifactId>plexus-io</artifactId>
<version>3.2.0</version>

<name>Plexus IO Components</name>

<scm>
<connection>scm:git:[email protected]:codehaus-plexus/plexus-io.git</connection>
<developerConnection>scm:git:[email protected]:codehaus-plexus/plexus-io.git</developerConnection>
<url>http://github.com/codehaus-plexus/plexus-io</url>
<tag>plexus-io-3.2.0</tag>
<connection>scm:git:[email protected]:tarent/plexus-io.git</connection>
<developerConnection>scm:git:[email protected]:tarent/plexus-io.git</developerConnection>
<url>http://github.com/tarent/plexus-io</url>
<tag>plexus-io-3.2.0-follow-symlinks</tag>
</scm>
<issueManagement>
<system>jira</system>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ public static PlexusIoResource createResource( File f, String name, final Conten
PlexusIoResourceAttributes attributes )
throws IOException
{
boolean symbolicLink = attributes.isSymbolicLink();
boolean symbolicLink = false;//attributes.isSymbolicLink();
System.err.println("moo");
return symbolicLink ? new PlexusIoSymlinkResource( f, name, attributes )
: new PlexusIoFileResource(f, name, attributes, contentSupplier, inputStreamTransformer);
}
Expand Down

0 comments on commit cc9b57b

Please sign in to comment.