Open senderle opened 7 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>
@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.
Possibly related to #80, which I think requires a more recent version than we use right now.
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 bymvn
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.