tags:

views:

51

answers:

1

Hello,

I need a build tool for compiling,testing, reporting and the deployment of Lua programs.

I chose Maven 2 because of our Polarion version supports it. Unfortunately, I couldn't find any Maven plugins/archetypes for Lua.

As I am a newbie in Maven I want to know whether it is difficult to write a customized Lua plugin for Maven.

+2  A: 

You can hook up the maven-compiler-plugin with any plexus compiler (reference here).

So I guess the standard way would be to write a plexus wrapper for the lua compiler using the Plexus Compiler API

seanizer
+1 for the theoretical resources (although I'm not sure it will be easy in practice).
Pascal Thivent
Thanks for the answer. I will have a look on Plexus.
Thomas
If you like my answer please accept and/or upvote it.
seanizer