alexnederlof / Jasper-report-maven-plugin

A fast jasper report maven plugin
Apache License 2.0
134 stars 84 forks source link

POM update required #74

Open jellisgwn opened 3 years ago

jellisgwn commented 3 years ago

The Jasper Report repo has moved / restructured again.

New Community Edition repo is here:

https://jaspersoft.jfrog.io/artifactory/jrs-ce-releases/

New third-party repo is here:

https://jaspersoft.jfrog.io/ui/repos/tree/General/third-party-ce-artifacts

Will provide PR.

Mcfloy commented 2 years ago

Hello, can you make a release tag to take into account the new URIs ? The latest tag doesn't include this modification.

zanonmark commented 2 years ago

To me, it works by simply commenting out the "jasperreports" and "jaspersoft-third-party" repositories,

i.e.:

        <repositories>
                <repository>
                        <id>main</id>
                        <url>https://repo.maven.apache.org/maven2/</url>
                </repository>
<!--
                <repository>
                        <id>jasperreports</id>
                        <url>https://jasperreports.sourceforge.net/maven2</url>
                        <url>https://jaspersoft.jfrog.io/artifactory/jrs-ce-releases/</url>
                </repository>
-->
<!--
                <repository>
                        <id>jaspersoft-third-party</id>
                        <url>http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts/</url>
                        <url>https://jaspersoft.jfrog.io/artifactory/third-party-ce-artifacts/</url>
                </repository>
-->
        </repositories>

Thanks, MZ