vote up 4 vote down star
1

I am relatively new to the world of Java and Maven, but I couldn't imagine starting a new Java project without using Maven.

The idea of providing a human-readable project model is something that I would imagine is universally desirable across many languages. This is especially true when your application relies upon numerous external libraries.

Are there any other project management or build tools for languages other than Java that are similar in nature to Maven; that is, that provide a mechanism for the project maintainer to specify dependencies and build order?

flag

5 Answers

vote up 4 vote down check

Here's some I know of. As to whether they are the most appropriate tool for a given language, form your own opinion.

Arbitrary "integrations" can be handled by using the exec-maven-plugin to invoke the relevant compiler and binding the execution to the compile phase.

There are also Maven-like products such as Byldan for .Net


Updated with Flex Mojos and dotnet-maven-plugin at Pascal's suggestion.

link|flag
I didn't wanted to edit your answer. Could you add flexmojos.sonatype.org for Flex and Air. Ever heard of doodleproject.sourceforge.net/mavenite/… for .NET? – Pascal Thivent Oct 16 at 14:24
@Pascal, you should feel free to edit any answer if you can make it better, that's what this site is for – Rich Seller Oct 16 at 14:46
@Rich Ok, thanks. I'm just still not sure about the edit etiquette. Will browse meta for this :) – Pascal Thivent Oct 16 at 15:54
I'd say adding to a list like this wouldn't (well shouldn't) offend anyone. For general etiquette see meta.stackoverflow.com/questions/11474 and meta.stackoverflow.com/questions/26237 – Rich Seller Oct 16 at 19:31
Don't forget Groovy, gmaven-plugin docs.codehaus.org/display/GMAVEN/… – sal Oct 16 at 20:37
vote up 0 vote down

You don't really need fancy plugins to manage just about anything that can be executed from command line. As an example I have put Maven builds around poorly managed .NET projects using technics described in this tutorial. Basically - plugins such as exec, antrun, assembly and dependency can be used together as I mentioned - to do practically everything you need. Of course there are specialized, targeted plugins but I found out that these are hard to use with existing legacy stuff

link|flag
vote up 1 vote down

Python setuptools works in a similar way to Maven in so far as specifying project dependencies. If the dependencies specified are available as eggs, tars or zip files then they can be automatically pulled in at installation or runtime.

link|flag
vote up 0 vote down

Phing is the PHP equivalent to Ant. It's (obviously) not quite Maven, but PHP doesn't have the same library (jar) management issues that Java does.

link|flag
vote up 0 vote down

I know that there are a couple of Maven plug ins for compiling GWT, gwt-maven and gwt-maven-plugin.

There's also this the maven-scala-plugin.

I'm sure if you do a search, you'll find it for most popular JVM languages.

And of course, there's NMaven for .NET. I've never used it though.

link|flag
Right, it's easy to see how Maven can be used for JVM languages other than Java. Most of what you referenced are plugins to Maven. What I'm looking for is more along the lines of Byldan ( byldan.codeplex.com/Wiki/… ), which seems to be equivalent (but not equal) to Maven for C# projects. I found this application via your NMaven link. – Thomas Upton Jul 23 at 11:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.