Skip to content

Commit

Permalink
buildscripts: migrate from Gradle DSL to Kotlin DSL
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jun 12, 2024
1 parent b702ea0 commit 900a439
Show file tree
Hide file tree
Showing 8 changed files with 388 additions and 425 deletions.
26 changes: 0 additions & 26 deletions build.gradle

This file was deleted.

24 changes: 24 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Gradle script to build the j-ogg-all project

plugins {
`base` // to add a "clean" task to the root project
}

ext {
set("version", "1.0.6-SNAPSHOT")
}

tasks.register("checkstyle") {
dependsOn(":library:checkstyleMain", ":vorbis:checkstyleMain")
}

// Register publishing tasks:

tasks.register("install") {
dependsOn(":library:install", "vorbis:install")
description = "Installs Maven artifacts to the local repository."
}
tasks.register("release") {
dependsOn("library:release", "vorbis:release")
description = "Stages Maven artifacts to Sonatype OSSRH."
}
190 changes: 0 additions & 190 deletions library/build.gradle

This file was deleted.

Loading

0 comments on commit 900a439

Please sign in to comment.