Paul Campbell
baea18f3f3
* Add root and parent pom.xml files * parent: add scala-maven-plugin to pluginManagement * fix packaging * domain: add module * parent,domain: add dependencies * maven: add filesystem module * parent: disable coverage and pitest * domain: move classes from test to main as they are used in filesystem * config: add module * console: add module * Add reactor-graph * fix typo * uishell: add module * Restore explicit dependencies Don’t depend upon transitive dependencies if we want to be able to restructure module dependencies. * storage: add module * lib: add module Included adding a Resource case class in filesystem to replace one generated by a scala plugin * storage-aws: add module * cli: add module * app: add module * app: make jar runnable * Updated build instructions in README * Convert readme to markdown * Add reactor graph to readme * Switch Guthub Actions to using Maven to build
26 lines
623 B
YAML
26 lines
623 B
YAML
# 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: maven
|
|
|
|
on:
|
|
push:
|
|
branches: '*'
|
|
pull_request:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
java: [ 8 ]
|
|
steps:
|
|
- uses: kamiazya/setup-graphviz@v1
|
|
- uses: actions/checkout@v2
|
|
- name: setup-jdk-${{ matrix.java }}
|
|
uses: actions/setup-java@v1
|
|
with:
|
|
java-version: ${{ matrix.java }}
|
|
- name: build-jar
|
|
run: mvn -B install
|