Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Table of Contents |
---|
English |
---|
If you have Docker (or a compatible container engine) installed, use the docker-maven-joget image to quickly generate and build plugins with minimal pre-requisites. To use this simplified approach, you just need to run some commands in a terminal (Mac/Linux) or PowerShell (Windows). |
Info |
---|
NOTE: ${PWD} is for Mac, Linux and Windows PowerShell. For Windows Command Prompt, replace ${PWD} with "%cd%". |
...
Code Block | ||
---|---|---|
| ||
docker run -it --rm -v ${PWD}:/usr/src/mymaven -w /usr/src/mymaven jogetworkflow/docker-maven-joget:78.0-SNAPSHOT mvn archetype:generate -DarchetypeGroupId="org.joget" -DarchetypeArtifactId="wflow-plugin-archetype" -DarchetypeVersion="78.0-SNAPSHOT" -DgroupId="org.joget.plugin" -DartifactId="custom-plugin" |
...
Code Block | ||
---|---|---|
| ||
docker run -it --rm -v ${PWD}:/root/.m2 -v ${PWD}:/usr/src/mymaven -w /usr/src/mymaven jogetworkflow/docker-maven-joget:78.0-SNAPSHOT mvn clean install |