0

I'm having trouble finding the Java libraries to run JasperReports through the Web Service interface.

These are the dependencies I'm looking for. Apparently they are not available in the central repo.

    <dependency>
        <groupId>com.jaspersoft.jasperserver</groupId>
        <artifactId>jasperserver-common-ws</artifactId>
        <version>5.0.0</version>
    </dependency>       
    <dependency>
        <groupId>com.jaspersoft.jasperserver</groupId>
        <artifactId>jasperserver-ws-client</artifactId>
        <version>5.0.0</version>
    </dependency>
    <dependency>
        <groupId>com.jaspersoft.jasperserver</groupId>
        <artifactId>jasperserver-ireport-plugin</artifactId>
        <version>4.2.0</version>
    </dependency>

I have tried adding the JasperForge repo to my pom:

    <repository>
        <id>JasperForge Maven Repository</id>
        <url>http://jasperforge.org/svn/repos/maven2</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
        <releases>
            <enabled>true</enabled>
        </releases>
    </repository>

But that didn't work as well.

4

1 回答 1

-1
  • jasperserver-common-ws 应该在您的 JRS 安装中
  • jasperserver-ireport-plugin 应该在您的 iReports 安装中
  • jasperserver-ws-client 应该在 jasperserver-ireport-plugin jar引用中

  • Jaserserver 源代码可在此处找到(凭据:anonsvn \ anonsvn)

于 2013-09-06T16:50:18.940 回答