Skip to content

Commit

Permalink
build-logic: Create PackagingPlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Aug 23, 2023
1 parent 16d33f8 commit 8cd8919
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
21 changes: 21 additions & 0 deletions build-logic/packaging/build.gradle
Original file line number Diff line number Diff line change
@@ -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')
}
Original file line number Diff line number Diff line change
@@ -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) {
}
}
1 change: 1 addition & 0 deletions build-logic/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ dependencyResolutionManagement {

include 'commons'
include 'gradle-tasks'
include 'packaging'
include 'tor-binary'

0 comments on commit 8cd8919

Please sign in to comment.