removed instance specific modules from code base

fixed user experience object not being created
removed top module, because it does not serve a purpose anymore
This commit is contained in:
Sheldan
2020-06-06 16:22:43 +02:00
parent d14e917329
commit a577932c42
11 changed files with 40 additions and 222 deletions

View File

@@ -23,7 +23,7 @@ jobs:
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B install --file pom.xml
run: mvn -B install --file abstracto-application/pom.xml
- name: Setup sonarqube
uses: warchant/setup-sonar-scanner@v1
- name: Run sonarqube

View File

@@ -15,9 +15,9 @@ jobs:
java-version: 1.8
- name: Load current version
id: version
run: echo "::set-output name=version::$(mvn -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive exec:exec)"
run: echo "::set-output name=version::$(mvn --file abstracto-application/pom.xml -q -Dexec.executable="echo" -Dexec.args='${project.version}' --non-recursive exec:exec)"
- name: Publish to GitHub Packages
run: mvn -B deploy -P documentation -Dmaven.wagon.http.pool=false -DskipTests=true
run: mvn --file abstracto-application/pom.xml -B deploy -P documentation -Dmaven.wagon.http.pool=false -DskipTests=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install SSH Client