Skip to content

Commit

Permalink
README.md: better advice for users of Gradle's Kotlin DSL
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 9, 2024
1 parent 25075db commit 4010270
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ The build tool should automatically resolve the dependency on JMF.

### Gradle-built projects

Add to the project’s "build.gradle" file:
Add to the project’s "build.gradle" or "build.gradle.kts" file:

repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.stephengold:j-ogg-all:1.0.5'
implementation("com.github.stephengold:j-ogg-all:1.0.5")
}

For some older versions of Gradle,
Expand Down Expand Up @@ -120,7 +120,7 @@ Add to the project’s "build.gradle" file:
mavenCentral()
}
dependencies {
implementation 'com.github.stephengold:j-ogg-vorbis:1.0.5'
implementation("com.github.stephengold:j-ogg-vorbis:1.0.5")
}

For some older versions of Gradle,
Expand Down

0 comments on commit 4010270

Please sign in to comment.