Skip to content

Commit a6106ca

Browse files
committed
minor fix
1 parent 6ced251 commit a6106ca

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ jobs:
6060
run: ./gradlew clean
6161
- if: matrix.os == 'windows-latest'
6262
name: Test with Gradle on Windows
63-
run: ./gradlew test -DapplicationProperties=src\test\resources\test-config\application-test-windows.properties
63+
run: ./gradlew test -DapplicationProperties="src\test\resources\test-config\application-test-windows.properties"
6464
- if: matrix.os != 'windows-latest'
6565
name: Test with Gradle on ${{ matrix.os }}
66-
run: ./gradlew test -DapplicationProperties=src/test/resources/test-config/application-test.properties
66+
run: ./gradlew test -DapplicationProperties="src/test/resources/test-config/application-test.properties"
6767
- name: Generate report
6868
run: ./gradlew jacocoTestReport
6969
- name: Codecov

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ plugins {
1010

1111
description = 'Generic mapping service supporting different mapping implementations.'
1212
group = 'edu.kit.datamanager'
13+
version = '0.1.0-SNAPSHOT'
1314

1415
println "Running gradle version: $gradle.gradleVersion"
1516
println "Building ${name} version: ${version}"

0 commit comments

Comments
 (0)