Jasper server maven repository url?

懵懂的女人 提交于 2019-12-05 13:23:01
carlspring

With some simple googling you can get to this other answer on SO, where you can find a reference to this, which in term states you can add it like this:

<repository>
    <id>JasperForge Maven Repository</id>
    <!-- note: you need a <server> definition at bottom of file this file -->
    <url>http://anonsvn:anonsvn@jasperforge.org/svn/repos/maven2</url>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
    <releases>
        <enabled>true</enabled>
    </releases>
</repository>

It also seems there's http://www.jasperforge.org/maven2/, which appears to be a non-browseable repository.

Another option is to put all required jars to a local maven repository. I know this is not the best solution, but it works, when you have no idea regarding correct Jasper public repository

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!