Skip to content

Commit

Permalink
use single quotes in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
marlester-dev committed Aug 4, 2024
1 parent e0fd232 commit b443471
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ version = '1.0.3'
repositories {
mavenCentral()
maven {
url "https://repo.opencollab.dev/maven-releases/"
url 'https://repo.opencollab.dev/maven-releases/'
}
maven {
url "https://repo.opencollab.dev/maven-snapshots/"
url 'https://repo.opencollab.dev/maven-snapshots/'
}
maven {
url "https://jitpack.io"
url 'https://jitpack.io'
}
}

Expand All @@ -38,8 +38,8 @@ publishing {
}

dependencies {
compileOnly "org.jetbrains:annotations:24.1.0"
compileOnly "org.projectlombok:lombok:1.18.32"
annotationProcessor "org.projectlombok:lombok:1.18.32"
api "com.github.AlexProgrammerDE:MCProtocolLib:576b311"
compileOnly 'org.jetbrains:annotations:24.1.0'
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
api 'com.github.AlexProgrammerDE:MCProtocolLib:576b311'
}

0 comments on commit b443471

Please sign in to comment.