jphp icon indicating copy to clipboard operation
jphp copied to clipboard

Adding as Maven Dependency is Broken

Open eduveks opened this issue 3 years ago • 0 comments

Hello,

I'm trying to add the JPHP Scripting as dependency via maven on my project, following this link:

https://mvnrepository.com/artifact/org.develnext/jphp-scripting/0.8.0

But I've already added the String Plugins Repository on my POM file:

    <repositories>
        <repository>
            <id>spring-repo</id>
            <name>Spring Repository</name>
            <url>https://repo.spring.io/release</url>
        </repository>
        <repository>
            <id>spring-plugins-repo</id>
            <name>Spring Plugins Repository</name>
            <url>https://repo.spring.io/plugins-release/</url>
        </repository>
    </repositories>

Then when I tried to execute the maven install, this error raised:

Failed to collect dependencies at org.develnext:jphp-scripting:jar:0.8.0: Failed to read artifact descriptor for org.develnext:jphp-scripting:jar:0.8.0: Could not transfer artifact org.develnext:jphp-scripting:pom:0.8.0 from/to spring-plugins-repo (https://repo.spring.io/plugins-release/): authentication failed for https://repo.spring.io/plugins-release/org/develnext/jphp-scripting/0.8.0/jphp-scripting-0.8.0.pom, status: 401 Unauthorized -> [Help 1]

This link (https://repo.spring.io/ui/native/plugins-release/org/develnext/jphp-scripting/0.8.0/jphp-scripting-0.8.0.jar) is empty and when the '../' is clicked goes to an authenticated page.

eduveks avatar Feb 24 '22 23:02 eduveks