Skip to content

Commit

Permalink
build: Added copy runtime dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jruaux committed Mar 15, 2024
1 parent 1acea73 commit 7009e7d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion plugins/riot/riot.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,11 @@ eclipse {
project {
name = 'riot-cli'
}
}
}

task copyRuntimeDependencies(type: Copy) {
into "$buildDir/dependencies/flat"
from configurations.runtimeClasspath
}

assemble.dependsOn(copyRuntimeDependencies)

0 comments on commit 7009e7d

Please sign in to comment.