# pdi-platform-utils-plugin **Repository Path**: mirrors_pentaho/pdi-platform-utils-plugin ## Basic Information - **Project Name**: pdi-platform-utils-plugin - **Description**: Kettle steps to interact with BA Server functionalities - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # pdi-platform-utils-plugin # _Collection of kettle steps to interact with BA Server services._ * 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 __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 ``` __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 ``` __IntelliJ__ * Don't use IntelliJ's built-in maven. Make it use the same one you use from the commandline. * Project Preferences -> Build, Execution, Deployment -> Build Tools -> Maven ==> Maven home directory