Skip to content

Commit b22b61f

Browse files
committed
buildscripts: remove unnecessary backticks
1 parent 6807019 commit b22b61f

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Gradle script to build the j-ogg-all project
22

33
plugins {
4-
`base` // to add a "clean" task to the root project
4+
base // to add a "clean" task to the root project
55
}
66

77
ext {

library/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Gradle script to build the "library" subproject of j-ogg-all
22

33
plugins {
4-
`checkstyle` // to analyze Java sourcecode for style violations
4+
checkstyle // to analyze Java sourcecode for style violations
55
`java-library` // to build JVM libraries
66
`maven-publish` // to publish artifacts to Maven repositories
7-
`signing` // to sign artifacts for publication
7+
signing // to sign artifacts for publication
88
}
99

1010
val group = "com.github.stephengold"

vorbis/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
// Gradle script to build the "vorbis" subproject of j-ogg-all
22

33
plugins {
4-
`checkstyle` // to analyze Java sourcecode for style violations
4+
checkstyle // to analyze Java sourcecode for style violations
55
`java-library` // to build JVM libraries
66
`maven-publish` // to publish artifacts to Maven repositories
7-
`signing` // to sign artifacts for publication
7+
signing // to sign artifacts for publication
88
}
99

1010
val group = "com.github.stephengold"

0 commit comments

Comments
 (0)