An open API service indexing awesome lists of open source software.

https://github.com/GraphWalker/graphwalker-project

This is the repo for the Model-based testing tool GraphWalker.
https://github.com/GraphWalker/graphwalker-project

Last synced: 16 days ago
JSON representation

This is the repo for the Model-based testing tool GraphWalker.

Awesome Lists containing this project

README

        

[![Java CI with Maven](https://github.com/GraphWalker/graphwalker-project/actions/workflows/maven.yml/badge.svg?branch=master)](https://github.com/GraphWalker/graphwalker-project/actions/workflows/maven.yml)
[![CodeQL](https://github.com/GraphWalker/graphwalker-project/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/GraphWalker/graphwalker-project/actions/workflows/codeql-analysis.yml)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.graphwalker/graphwalker-project/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.graphwalker/graphwalker-project)

# GraphWalker

Documentation on http://graphwalker.org/

## Get the source code and build all modules

```bash
git clone https://github.com/GraphWalker/graphwalker-project.git
cd graphwalker-project
mvn install
```

## Build the stand command-line tool

```bash
mvn package -pl graphwalker-cli -am
```

The jar is in:
```bash
graphwalker-cli/target/graphwalker-cli-.jar
```

Run it like:
```bash
java -jar graphwalker-cli/target/graphwalker-cli-.jar
```

## Build Studio

```bash
mvn package -pl graphwalker-studio -am
```

The jar is in:
```bash
graphwalker-studio/target/
```

Run it like:
```bash
java -jar graphwalker-studio/target/graphwalker-studio-.jar
```