Skip to content

Commit 6129787

Browse files
Use latest grade-compatible syntax in build file
1 parent 6fadd8a commit 6129787

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/publish_github_draft.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
with:
3434
upload_url: ${{ steps.create_release.outputs.upload_url }}
3535
asset_path: build/distributions/typedb-loader-${{ github.ref_name }}.zip
36-
asset_name: typedb-loader-${{ github.ref_namef }}.zip
36+
asset_name: typedb-loader-${{ github.ref_name }}.zip
3737
asset_content_type: application/zip
3838
env:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -46,4 +46,4 @@ jobs:
4646
asset_name: typedb-loader-${{ github.ref_name }}.tar
4747
asset_content_type: application/gzip
4848
env:
49-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ repositories {
1515
}
1616

1717
dependencies {
18-
compile group: 'com.vaticle.typedb', name: 'typedb-client', version: '2.8.0'
19-
compile group: 'com.vaticle.typeql', name: 'typeql-grammar', version: '2.8.0'
20-
testCompile group: 'junit', name: 'junit', version: '4.12'
21-
compile 'com.google.code.gson:gson:2.8.6'
22-
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
23-
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.13.3'
24-
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.3'
25-
annotationProcessor 'info.picocli:picocli-codegen:4.5.1'
26-
compile 'info.picocli:picocli:4.5.1'
27-
compile 'org.apache.commons:commons-csv:1.8'
28-
implementation group: 'commons-io', name: 'commons-io', version: '2.8.0'
18+
implementation("com.vaticle.typedb:typedb-client:2.8.0")
19+
implementation("com.vaticle.typeql:typeql-grammar:2.8.0")
20+
implementation("com.google.code.gson:gson:2.8.6")
21+
implementation("org.slf4j:slf4j-api:1.7.25")
22+
implementation("org.apache.logging.log4j:log4j-api:2.13.3")
23+
implementation("org.apache.logging.log4j:log4j-core:2.13.3")
24+
implementation("info.picocli:picocli:4.5.1")
25+
implementation("org.apache.commons:commons-csv:1.8")
26+
implementation("commons-io:commons-io:2.8.0")
27+
compileOnly("info.picocli:picocli-codegen:4.5.1")
28+
testImplementation("junit:junit:4.12")
2929
}
3030

3131
mainClassName = 'cli.TypeDBLoaderCLI'

0 commit comments

Comments
 (0)