-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buildscripts: migrate from Gradle DSL to Kotlin DSL
- Loading branch information
1 parent
b702ea0
commit 900a439
Showing
8 changed files
with
388 additions
and
425 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.