seahen / maven-s3-wagon

A Maven Wagon provider for accessing Amazon's Simple Storage Service (S3)
Other
43 stars 24 forks source link

this way work on both platforms. #17

Closed rafatackla closed 3 years ago

rafatackla commented 4 years ago

Closes seahen/maven-s3-wagon#16

qiao-rsa commented 4 years ago

I think I am having the same issue on Windows. Can we release a version with this fix?

dbolotin commented 4 years ago

We also experience the problem.

dbolotin commented 4 years ago

For those who also stuck with this issue, before this pull request will be merged, one can use the build from the JitPack:

<project>
    ...
    <pluginRepositories>
        <pluginRepository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </pluginRepository>
    </pluginRepositories>
    ...
    <build>
        <extensions>
            <extension>
                <groupId>com.github.rafatackla</groupId>
                <artifactId>maven-s3-wagon</artifactId>
                <version>bugfix~problem_download_artifact_windows-maven-s3-wagon-1.3.1-g11681f8-2</version>
            </extension>
        </extensions>
        ...
    </build>
</project>
seahen commented 3 years ago

This looks reasonable, that is a better way to do it.