Skip to content

Commit

Permalink
Make Gradle happier.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Nov 11, 2023
1 parent 77e5995 commit 086a88b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 1.8.2

- Use sourceTarget in GH action matrix
- Use sourceTarget in GH action matrix. Make matrix static again.

- Can large array shrinking be improved?
See https://github.com/jqwik-team/jqwik/issues/525
Expand Down
1 change: 1 addition & 0 deletions documentation/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ dependencies {
testImplementation(project(":web"))
testImplementation(project(":testing"))
testImplementation(project(":kotlin"))
testRuntimeOnly("org.junit.platform:junit-platform-launcher:${junitPlatformVersion}")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${kotlinxVersion}")
testImplementation("org.mockito:mockito-core:${mockitoVersion}")
testImplementation("org.assertj:assertj-core:${assertJVersion}")
Expand Down
11 changes: 11 additions & 0 deletions documentation/src/test/java/net/jqwik/MakeGradleHappyTests.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package net.jqwik;

import net.jqwik.api.*;

class MakeGradleHappyTests {

@Example
void makeGradleHappy() {
// This test is only here to get rid of a Gradle warning
}
}

0 comments on commit 086a88b

Please sign in to comment.