Skip to content

Commit

Permalink
Use latest grade-compatible syntax in build file
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingsilverfin committed Apr 8, 2022
1 parent 6fadd8a commit 6129787
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_github_draft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/distributions/typedb-loader-${{ github.ref_name }}.zip
asset_name: typedb-loader-${{ github.ref_namef }}.zip
asset_name: typedb-loader-${{ github.ref_name }}.zip
asset_content_type: application/zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -46,4 +46,4 @@ jobs:
asset_name: typedb-loader-${{ github.ref_name }}.tar
asset_content_type: application/gzip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22 changes: 11 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ repositories {
}

dependencies {
compile group: 'com.vaticle.typedb', name: 'typedb-client', version: '2.8.0'
compile group: 'com.vaticle.typeql', name: 'typeql-grammar', version: '2.8.0'
testCompile group: 'junit', name: 'junit', version: '4.12'
compile 'com.google.code.gson:gson:2.8.6'
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.13.3'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.3'
annotationProcessor 'info.picocli:picocli-codegen:4.5.1'
compile 'info.picocli:picocli:4.5.1'
compile 'org.apache.commons:commons-csv:1.8'
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
implementation("com.vaticle.typedb:typedb-client:2.8.0")
implementation("com.vaticle.typeql:typeql-grammar:2.8.0")
implementation("com.google.code.gson:gson:2.8.6")
implementation("org.slf4j:slf4j-api:1.7.25")
implementation("org.apache.logging.log4j:log4j-api:2.13.3")
implementation("org.apache.logging.log4j:log4j-core:2.13.3")
implementation("info.picocli:picocli:4.5.1")
implementation("org.apache.commons:commons-csv:1.8")
implementation("commons-io:commons-io:2.8.0")
compileOnly("info.picocli:picocli-codegen:4.5.1")
testImplementation("junit:junit:4.12")
}

mainClassName = 'cli.TypeDBLoaderCLI'
Expand Down

0 comments on commit 6129787

Please sign in to comment.