We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee7168b commit f27eafaCopy full SHA for f27eafa
1 file changed
build.gradle
@@ -149,6 +149,7 @@ configurations {
149
// Test things
150
dependencies {
151
intTestImplementation "junit:junit:4.13.2"
152
+ intTestImplementation "org.assertj:assertj-core:3.26.3"
153
}
154
155
tasks.register('integrationTest', Test) {
@@ -157,6 +158,11 @@ tasks.register('integrationTest', Test) {
157
158
description = 'Runs integration tests.'
159
group = 'verification'
160
161
+ // This is mostly so we can use """strings"""
162
+ // in tests and not have it yell at us.
163
+ sourceCompatibility = JavaVersion.VERSION_15
164
+ targetCompatibility = JavaVersion.VERSION_15
165
+
166
testClassesDirs = sourceSets.intTest.output.classesDirs
167
classpath = sourceSets.intTest.runtimeClasspath
168
shouldRunAfter test
0 commit comments