Skip to content

Commit

Permalink
Updated deps to version v0.0.5 and added windows lib file (dll) (#1968)
Browse files Browse the repository at this point in the history
* updated deps to version v0.0.5 and added windows lib file (dll)

* removed duplicated dep

---------

Co-authored-by: Christian Banse <[email protected]>
  • Loading branch information
interruptedHandshake and oxisto authored Jan 24, 2025
1 parent bb0f377 commit a5f4ec4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cpg-language-go/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,14 @@ dependencies {

tasks {
val downloadLibGoAST by registering(Download::class) {
val version = "v0.0.4"
val version = "v0.0.5"

src(listOf(
"https://github.com/Fraunhofer-AISEC/libgoast/releases/download/${version}/libgoast-arm64.dylib",
"https://github.com/Fraunhofer-AISEC/libgoast/releases/download/${version}/libgoast-amd64.dylib",
"https://github.com/Fraunhofer-AISEC/libgoast/releases/download/${version}/libgoast-arm64.so",
"https://github.com/Fraunhofer-AISEC/libgoast/releases/download/${version}/libgoast-amd64.so"
"https://github.com/Fraunhofer-AISEC/libgoast/releases/download/${version}/libgoast-amd64.so",
"https://github.com/Fraunhofer-AISEC/libgoast/releases/download/${version}/libgoast-amd64.dll"
))
dest(projectDir.resolve("src/main/resources"))
onlyIfModified(true)
Expand Down

0 comments on commit a5f4ec4

Please sign in to comment.