The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here

[SOLVED] using the text extension as an dependency

RaedMarjiRaedMarji Member Posts: 13 Contributor II
edited July 2019 in Help
Dear All,

Im tryiing to implement a new operator that relies on the Text Processing extension Classes like Document and Token, so I was wondering what is the appropriate way to do this? I would prefer if you can explain this in regards of both the build.xml file and my build path.

Thanks In Advance. ;)

Answers

  • Nils_WoehlerNils_Woehler Member Posts: 463 Maven
    Hi,

    your build.dependentExtensions tag should look like this

    <fileset id="build.dependentExtensions" dir="..">
    <include name="RapidMiner_Plugin_TextProcessing_Unuk/build.xml" />
    </fileset>
    Furthermore you should add the extension dependency:

    <property name="extension.dependencies" value="rmx_text[5.3]" />
    And for your project configuration you should add the dependency to the
    text processing extension of course :-)

    Best regards,
    Nils



  • RaedMarjiRaedMarji Member Posts: 13 Contributor II
    thanks Nils, that helped but regarding my scnd question I think it wasnt clear, for now I havent been able to to this without adding the text ext jar so is it the right way?
  • Marco_BoeckMarco_Boeck Administrator, Moderator, Employee-RapidMiner, Member, University Professor Posts: 1,996 RM Engineering
    Hi,

    regarding your build path it really does not matter much, you can either add the .jar or checkout the project sources via SourceForge and add the whole project as a dependency.

    Regards,
    Marco
Sign In or Register to comment.