Using Maven as a build tool for Lua programs

I need a build tool for compiling, testing, reporting, and deploying Lua programs.

I chose Maven 2 because our version of Polarion supports it. Unfortunately, I could not find Maven plugins / archetypes for Lua.

Since I'm new to Maven, I want to know if it's hard to write a custom Lua plugin for Maven.

+3
source share
1 answer

You can connect the maven-compiler-plugin with any plexus compiler ( link here ).

, , plexus lua, API Plexus

+4

Source: https://habr.com/ru/post/1771730/


All Articles