mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
23 lines
408 B
Plaintext
23 lines
408 B
Plaintext
plugins {
|
|
`java-gradle-plugin`
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("PackagingPlugin") {
|
|
id = "bisq.gradle.packaging.PackagingPlugin"
|
|
implementationClass = "bisq.gradle.packaging.PackagingPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":gradle-tasks"))
|
|
implementation(libs.commons.codec)
|
|
}
|