Madhukesh
Madhukesh

Reputation: 1

how to port pentaho data integeration kettle plugins to apache hop?

In the document, I see change maven dependency but I cannot find the correct maven dependency for the hop, I mean they have mentioned Change group pentaho-kettle to org.hop but I couldn't find any dependency for org.hop.

Can anyone say what exactly I need to do, or what exactly they are referring to?

can I use org.apache.hop is that the same??

Upvotes: 0

Views: 266

Answers (1)

Bart Maertens
Bart Maertens

Reputation: 31

Good catch, we'll update the documentation.

org.apache.hop is correct.

Hop doesn't publish artifacts to maven central (yet). You can either build Hop locally or add the Apache repository to your pom:

    <repository>
      <id>Apache</id>
      <url>https://repository.apache.org/snapshots/</url>
      <name>Apache Repository</name>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
      <releases>
        <enabled>false</enabled>
      </releases>
    </repository>

Upvotes: 1

Related Questions