Skip to content

Commit

Permalink
Merge pull request #41456 from gabilang/fix-gradle-syntax
Browse files Browse the repository at this point in the history
Fix gradle syntax errors in setting versions
  • Loading branch information
warunalakshitha authored Oct 2, 2023
2 parents 6eb461f + c5028d1 commit 9e82176
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion misc/ballerinalang-data-mapper/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies {

implementation(group: 'org.eclipse.lsp4j', name: 'org.eclipse.lsp4j', version: "${project.eclipseLsp4jVersion}")

implementation 'com.fasterxml.jackson.core:jackson-databind:"${project.jacksonCoreVersion}"'
implementation "com.fasterxml.jackson.core:jackson-databind:${project.jacksonCoreVersion}"

testImplementation 'org.testng:testng'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies {
testImplementation project(':ballerina-parser')
testImplementation project(':language-server:language-server-commons')
testImplementation project(':language-server:language-server-core')
testImplementation 'com.google.code.gson:gson:"${project.gsonVersion}"'
testImplementation "com.google.code.gson:gson:${project.gsonVersion}"
testImplementation (group: 'org.eclipse.lsp4j', name: 'org.eclipse.lsp4j', version: "${project.eclipseLsp4jVersion}")
testImplementation (group: 'net.javacrumbs.json-unit', name: 'json-unit-assertj', version: '2.28.0')
testImplementation (group: 'net.javacrumbs.json-unit', name: 'json-unit-json-path', version: '2.28.0')
Expand Down
2 changes: 1 addition & 1 deletion misc/toml-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ configurations.all {

dependencies {
implementation project(':ballerina-tools-api')
implementation 'com.google.code.gson:gson:"${project.gsonVersion}"'
implementation "com.google.code.gson:gson:${project.gsonVersion}"
implementation 'org.apache.commons:commons-text'
testImplementation 'org.testng:testng'
}
Expand Down

0 comments on commit 9e82176

Please sign in to comment.