# pentaho-actionsequence-dom **Repository Path**: mirrors_addons/pentaho-actionsequence-dom ## Basic Information - **Project Name**: pentaho-actionsequence-dom - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-27 - **Last Updated**: 2025-09-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Pentaho Action Sequence DOM # #### Pre-requisites for building the project: * Maven, version 3+ * Java JDK 11 * This [settings.xml](https://raw.githubusercontent.com/pentaho/maven-parent-poms/master/maven-support-files/settings.xml) in your /.m2 directory #### Building it This is a maven project, and to build it use the following command ``` $ mvn clean install ``` Optionally you can specify -Dmaven.test.skip=true to skip the tests (even though you shouldn't as you know) The build result will be a Pentaho package located in ```target```. #### Running the tests __Unit tests__ This will run all unit tests in the project (and sub-modules). ``` $ mvn test ``` If you want to remote debug a single java unit test (default port is 5005): ``` $ mvn test -Dtest=<> -Dmaven.surefire.debug ``` To skip test ``` $ mvn clean install -DskipTests ``` To get log as text file ``` $ mvn clean install test >log.txt ```