senderle / topic-modeling-tool

A point-and-click tool for creating and analyzing topic models produced by MALLET.
https://senderle.github.io/topic-modeling-tool/documentation/2017/01/06/quickstart.html
Apache License 2.0
106 stars 22 forks source link

Use most recent version of MALLET #60

Open senderle opened 7 years ago

senderle commented 7 years ago

Currently the tool uses a specific version of MALLET, 2.0.7; it would be nice to update pom.xml to specify the most recent version indexed by mvn if possible, or at least the currently most recent version (2.0.8), released in 2016 (vs. 2011 for 2.0.7).

I've seen indications from David Mimno that it's best to just use the version on the github master branch (https://github.com/mimno/Mallet) but I'm not 100% sure how to do that using maven, or if that's even possible.

igorbrigadir commented 4 years ago

I think you can use Jitpack for this, in pom.xml:

    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>

Add dependency

    <dependency>
        <groupId>com.github.mimno</groupId>
        <artifactId>Mallet</artifactId>
        <version>v2.0.8</version>
    </dependency>

Or for latest master:

    <dependency>
        <groupId>com.github.mimno</groupId>
        <artifactId>Mallet</artifactId>
        <version>master-SNAPSHOT</version>
    </dependency>
senderle commented 4 years ago

@igorbrigadir that looks awesome, thanks for alerting me to it! I am super dense when it comes to java tooling, so any other suggestions you have, let me know.

senderle commented 3 years ago

Possibly related to #80, which I think requires a more recent version than we use right now.