Pergunta

I searched on many repository hubs but could not find the latest pentaho report engine repositories for maven or gradle. I need only report engine libs and its dependencies.

Please share if you know some repos i can add in my gradle's buildconfig or maven's pom.
Thanks in advance

Foi útil?

Solução

I think the repository you are looking for can be found here:

http://repo.pentaho.org/artifactory/repo

Outras dicas

For classes from packages like org.pentaho.platform.web.http for version 5

<repository>
        <id>pentaho-releases</id>
        <url>http://repository.pentaho.org/artifactory/repo/</url>
    </repository>

And

        <dependency>
            <groupId>pentaho</groupId>
            <artifactId>pentaho-platform-extensions</artifactId>
            <version>5.0.3</version>
        </dependency>

URL for Pentaho artifacts repository: http://repo.pentaho.org/artifactory/pentaho/

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top