File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 5050 uses : actions/setup-dotnet@v2
5151 with :
5252 dotnet-version : ${{ matrix.dotnet }}
53- - name : Build SbeTool
54- run : ./gradlew
5553 - name : Build .NET library
5654 run : ./csharp/build.sh
5755 - name : Run property tests
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ def checkstyleVersion = '9.3'
5858def hamcrestVersion = ' 2.2'
5959def mockitoVersion = ' 4.11.0'
6060def junitVersion = ' 5.10.2'
61- def jqwikVersion = ' 1.8.0 '
61+ def jqwikVersion = ' 1.8.1 '
6262def jsonVersion = ' 20230618'
6363def jmhVersion = ' 1.37'
6464def agronaVersion = ' 1.21.1'
@@ -297,11 +297,17 @@ project(':sbe-tool') {
297297 }
298298
299299 propertyTest(JvmTestSuite ) {
300+ // We should be able to use _only_ the JQwik engine, but this issue is outstanding:
301+ // https://github.com/gradle/gradle/issues/21299
300302 useJUnitJupiter junitVersion
301303
302304 dependencies {
303305 implementation project()
304- implementation " net.jqwik:jqwik:${ jqwikVersion} "
306+ implementation(" net.jqwik:jqwik:${ jqwikVersion} " ) {
307+ // Exclude JUnit 5 dependencies that are already provided due to useJUnitJupiter
308+ exclude group : ' org.junit.platform' , module : ' junit-platform-commons'
309+ exclude group : ' org.junit.platform' , module : ' junit-platform-engine'
310+ }
305311 implementation " org.json:json:${ jsonVersion} "
306312 }
307313
You can’t perform that action at this time.
0 commit comments