# marketplace **Repository Path**: 33419936/marketplace ## Basic Information - **Project Name**: marketplace - **Description**: Providing Pentaho, Partners, and Community Developers a marketplace for plugins within the BI Server product - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-10-25 - **Last Updated**: 2021-10-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # marketplace http://wiki.pentaho.com/display/EAI/Marketplace #### Pre-requisites for building the project: * Maven, version 3+ * Java JDK 1.8 * This [settings.xml](https://github.com/pentaho/maven-parent-poms/blob/master/maven-support-files/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 ```