Jitpack.io: Failed build on `ralfstuckert/pdfbox-layout`

Created on 23 Mar 2021  路  4Comments  路  Source: jitpack/jitpack.io

Version 1.0.0 of ralfstuckert/pdfbox-layout is reporting an error state.

Link to build log: https://jitpack.io/com/github/ralfstuckert/pdfbox-layout/1.0.0/build.log

In my project, this is the error I'm seeing:

```'
Execution failed for task ':compileJava'.

Could not resolve all files for configuration ':compileClasspath'.
Could not find com.**.ralfstuckert.pdfbox-layout:pdfbox2-layout:1.0.0.
```

Most helpful comment

I have the same issue. Was working a few days ago. Not sure if the file was removed from maven

Could not find artifact com.github.ralfstuckert.pdfbox-layout:pdfbox2-layout:jar:1.0.0 in central (https://repo.maven.apache.org/maven2)

All 4 comments

I have the same issue. Was working a few days ago. Not sure if the file was removed from maven

Could not find artifact com.github.ralfstuckert.pdfbox-layout:pdfbox2-layout:jar:1.0.0 in central (https://repo.maven.apache.org/maven2)

Hello. I have the same issue. When i tried to run my project in GitHub Actions i get this error:

[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  29.893 s
[INFO] Finished at: 2021-03-29T21:01:45Z
[INFO] ------------------------------------------------------------------------
Error:  Failed to execute goal on project Autoc0de-Web: Could not resolve dependencies for project com.autoc0de:Autoc0de-Web:jar:1.0-SNAPSHOT: Could not find artifact com.github.ralfstuckert.pdfbox-layout:pdfbox2-layout:jar:1.0.0 in jitpack.io (https://jitpack.io) -> [Help 1]
Error:  
Error:  To see the full stack trace of the errors, re-run Maven with the -e switch.
Error:  Re-run Maven using the -X switch to enable full debug logging.
Error:  
Error:  For more information about the errors and possible solutions, please read the following articles:
Error:  [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
Error: Process completed with exit code 1.

I have a TEMPORARY solution to this problem. Just add these dependencies in our pom.xml

    <repositories>
             <repository>
                 <id>jitpack.io</id>
                 <url>https://jitpack.io</url>
             </repository>
    </repositories>
<!-- https://mvnrepository.com/artifact/com.github.ralfstuckert.pdfbox-layout/pdfbox2-layout -->
        <dependency>
            <groupId>com.github.ralfstuckert.pdfbox-layout</groupId>
            <artifactId>pdfbox2-layout</artifactId>
            <version>0.8.6</version>
        </dependency>

This allows us to download the required library, since it seems that the previous repository is failing. However, we are adding an old dependency, so I clarify that it is a temporary solution

@Joel-Vitelli yes we downgraded to v0.9 to solve our problem temporarily, but would love to see the build fixed.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jitpack-io picture jitpack-io  路  7Comments

mannodermaus picture mannodermaus  路  3Comments

jtang-ml picture jtang-ml  路  4Comments

vananiev picture vananiev  路  5Comments

budowski picture budowski  路  3Comments