Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ signing {
}

// This allows specifying deps to be shadowed so that they don't get included in the POM file
val shadowImplementation by configurations.creating
val shadowImplementation = configurations.create("shadowImplementation")

configurations[JavaPlugin.COMPILE_ONLY_CONFIGURATION_NAME].extendsFrom(shadowImplementation)

Expand Down Expand Up @@ -267,8 +267,8 @@ project.configure<IdeaModel> {
}
}

val submodulesUpdate by
tasks.registering(Exec::class) {
val submodulesUpdate =
tasks.register<Exec>("submodulesUpdate") {
group = "Build Setup"
description = "Updates (and inits) substrait git submodule"
commandLine = listOf("git", "submodule", "update", "--init", "--recursive")
Expand Down
2 changes: 1 addition & 1 deletion isthmus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ tasks {
}

// Register a separate task to run integration tests
val test by testing.suites.existing(JvmTestSuite::class)
val test = testing.suites.named<JvmTestSuite>("test")

tasks.register<Test>("integrationTest") {
description = "Run integration tests"
Expand Down
Loading