mirror of
https://github.com/bisq-network/bisq.git
synced 2025-01-19 05:44:05 +01:00
build-logic: Create PackagingPlugin
This commit is contained in:
parent
16d33f885e
commit
8cd8919815
21
build-logic/packaging/build.gradle
Normal file
21
build-logic/packaging/build.gradle
Normal file
@ -0,0 +1,21 @@
|
||||
plugins {
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.7.10'
|
||||
id 'org.gradle.kotlin.kotlin-dsl' version '2.4.1'
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
gradlePlugin {
|
||||
plugins {
|
||||
simplePlugin {
|
||||
id = 'bisq.gradle.packaging.PackagingPlugin'
|
||||
implementationClass = 'bisq.gradle.packaging.PackagingPlugin'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':gradle-tasks')
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
package bisq.gradle.packaging
|
||||
|
||||
import org.gradle.api.Plugin
|
||||
import org.gradle.api.Project
|
||||
|
||||
class PackagingPlugin : Plugin<Project> {
|
||||
override fun apply(project: Project) {
|
||||
}
|
||||
}
|
@ -8,4 +8,5 @@ dependencyResolutionManagement {
|
||||
|
||||
include 'commons'
|
||||
include 'gradle-tasks'
|
||||
include 'packaging'
|
||||
include 'tor-binary'
|
||||
|
Loading…
Reference in New Issue
Block a user