# pentaho-commons-gwt-modules **Repository Path**: mirrors_pentaho/pentaho-commons-gwt-modules ## Basic Information - **Project Name**: pentaho-commons-gwt-modules - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 1 - **Created**: 2020-08-18 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Pentaho Commons GWT Modules # _Common GWT modules to be used and extended by other projects._ #### Pre-requisites for building the project: * Maven, version 3+ * Java JDK 11 * 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: ```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 ``` #### Running the tests __Unit tests__ This will run all tests in the project (and sub-modules). ``` $ mvn test ``` If you want to remote debug a single java unit test (default port is 5005): ``` $ cd core $ mvn test -Dtest=<> -Dmaven.surefire.debug ``` __Integration tests__ In addition to the unit tests, there are integration tests in the core project. ``` $ mvn verify -DrunITs ``` To run a single integration test: ``` $ mvn verify -DrunITs -Dit.test=<> ``` To run a single integration test in debug mode (for remote debugging in an IDE) on the default port of 5005: ``` $ mvn verify -DrunITs -Dit.test=<> -Dmaven.failsafe.debug ```