Skip to content

Commit

Permalink
Added build workflow and fixed build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbussmann committed Dec 11, 2020
1 parent 41a1e32 commit 0f588f0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
- push

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- uses: eskatos/gradle-command-action@v1
with:
gradle-version: 5.6.2
arguments: build -x test -x distTar
- uses: actions/upload-artifact@v1
with:
name: VZD-Client
path: build/distributions
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ buildscript {
classpath 'de.gematik:documentation-plugin:1.1.2'
}
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
maven { url "https://plugins.gradle.org/m2/" }
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/jaxb-binding/binding.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
version="2.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema">

<jaxb:bindings schemaLocation="..\\xsd\\commands.xsd" node="/xs:schema">
<jaxb:bindings schemaLocation="../xsd/commands.xsd" node="/xs:schema">
<jaxb:globalBindings fixedAttributeAsConstantProperty="true"/>
</jaxb:bindings>

Expand Down

0 comments on commit 0f588f0

Please sign in to comment.