### Run GraphWalker Studio Source: https://graphwalker.org/docs Start the GraphWalker Studio by running its JAR file. Access the model editor via the provided URL in your web browser. ```bash java -jar graphwalker-studio-4.3.2.jar ``` -------------------------------- ### Navigate to Project Directory Source: https://graphwalker.org/docs Change the current directory to the newly created project folder. ```bash cd myProject ``` -------------------------------- ### Compile and Run GraphWalker Java Project Source: https://graphwalker.org/docs Compile the project and execute the main class for running GraphWalker tests. ```bash mvn compile exec:java -Dexec.mainClass="com.company.Runner" ``` -------------------------------- ### Create GraphWalker Maven Project Source: https://graphwalker.org/docs Use this command to generate a new GraphWalker Maven project. Ensure you replace LATEST with a specific version if needed. ```bash mvn archetype:generate -B \ -DarchetypeGroupId=org.graphwalker \ -DarchetypeArtifactId=graphwalker-maven-archetype \ -DgroupId=com.company -DartifactId=myProject \ -DarchetypeVersion=LATEST ``` -------------------------------- ### Run GraphWalker Command Line Tool Source: https://graphwalker.org/docs Execute the GraphWalker CLI tool by running the downloaded JAR file. This is for offline path generation and other command-line operations. ```bash java -jar graphwalker-cli-4.3.3.jar ``` -------------------------------- ### Add GraphWalker Maven Dependency Source: https://graphwalker.org/docs Include this dependency in your project's pom.xml to use GraphWalker core functionalities. Ensure the version matches your requirements. ```xml org.graphwalker graphwalker-core 4.3.2 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.