Skip to content
This repository was archived by the owner on Jul 16, 2026. It is now read-only.

remove dead link from readme #229

remove dead link from readme

remove dead link from readme #229

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '11'
- name: Installing Testsuite API
run: mvn install:install-file -Dfile=libs/bdm-test-suite-api-1.1.jar -DgroupId=com.signavio -DartifactId=bdm-testsuite-api -Dversion=1.1 -Dpackaging=jar
- name: Installing Formulae
run: mvn install:install-file -Dfile=libs/dmn-formulae-java8-1.1.jar -DgroupId=com.signavio -DartifactId=dmn-formulae -Dversion=1.1 -Dpackaging=jar
- name: Build with Maven
run: mvn -q -B package --file pom.xml
- name: Execute example Drools/DMN files
run: mvn -q exec:java -Dexec.mainClass="com.signavio.examples.SignavioExamples"