Refactor Maven Project Structure

- Convert client/, common/ and server/ to modules
- Add parent pom.xml
- Update templates and workflow
- Remove old documentation
This commit is contained in:
2020-07-13 15:06:10 +02:00
parent b9311424df
commit 95bb4b7234
43 changed files with 82 additions and 1128 deletions

27
.github/workflows/maven.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Java CI
on: [push]
jobs:
build-server:
name: Build Server
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B package -pl server -am
- uses: actions/upload-artifact@v1
with:
name: envoy-server
path: server/target/envoy-server-jar-with-dependencies.jar