Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use most recent version of MALLET #60

Open
senderle opened this issue Jul 24, 2017 · 3 comments
Open

Use most recent version of MALLET #60

senderle opened this issue Jul 24, 2017 · 3 comments

Comments

@senderle
Copy link
Owner

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
Copy link

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
Copy link
Owner Author

@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
Copy link
Owner Author

senderle commented Mar 1, 2021

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants