Skip to content

Providing Pentaho, Partners, and Community Developers a marketplace for plugins within the BI Server product

Notifications You must be signed in to change notification settings

pentaho/marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8695362 · Nov 11, 2024
Mar 31, 2022
Nov 11, 2024
Nov 11, 2024
Nov 11, 2024
Nov 7, 2024
Nov 7, 2024
Jun 24, 2019
Feb 24, 2022
Jul 8, 2024

Repository files navigation

marketplace

https://pentaho-community.atlassian.net/wiki/display/EAI/Marketplace

Pre-requisites for building the project:

  • Maven, version 3+
  • Java JDK 11
  • This settings.xml in your /.m2 directory

Building it

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