https://pentaho-community.atlassian.net/wiki/display/EAI/Marketplace
- Maven, version 3+
- Java JDK 11
- This settings.xml in your /.m2 directory
Build for nightly/release
All required profiles are activated by the presence of a property named "release".
$ mvn clean install -Drelease
This will build, unit test, and package the whole project (all of the sub-modules). The artifact will be generated in: marketplace/target
Build for CI/dev
The release
builds will compile the source for production (meaning potential obfuscation and/or uglification). To build without that happening, just eliminate the release
property.
$ mvn clean install