Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
To use this simplified approach, you just need to run some commands in a terminal (Mac/Linux) or PowerShell (Windows).
Info |
---|
NOTE: "$PWD" ${PWD} is for Mac, Linux and Windows PowerShell. For Windows Command Prompt, replace "$PWD" ${PWD} with "%cd%". |
Warning |
---|
This approach is suitable to quickly get started. For long-term development, you should set up a proper Java development environment as described in Build Source Code on Windows or Build Source Code on Linux. |
...
Code Block | ||
---|---|---|
| ||
docker run -it --rm -v "$PWD"${PWD}:/usr/src/mymaven -w /usr/src/mymaven jogetworkflow/docker-maven-joget:7.0-SNAPSHOT mvn archetype:generate -DarchetypeGroupId="org.joget" -DarchetypeArtifactId="wflow-plugin-archetype" -DarchetypeVersion="7.0-SNAPSHOT" -DgroupId="org.joget.plugin" -DartifactId="custom-plugin" |
1. Navigate to the plugin source code directory/folder containing the pom.xml file
...
Code Block | ||
---|---|---|
| ||
docker run -it --rm -v "$PWD"${PWD}:/root/.m2 -v "$PWD"${PWD}:/usr/src/mymaven -w /usr/src/mymaven jogetworkflow/docker-maven-joget:7.0-SNAPSHOT mvn clean install |