mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
28 lines
558 B
Groovy
28 lines
558 B
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'maven-publish'
|
|
id 'signing'
|
|
id "org.moditect.gradleplugin" version "1.0.0-rc3"
|
|
}
|
|
|
|
apply from: "$rootDir/deps/java.gradle"
|
|
apply from: "$rootDir/deps/jackson.gradle"
|
|
apply from: "$rootDir/deps/lombok.gradle"
|
|
apply from: 'publish.gradle'
|
|
apply from: "$rootDir/deps/publish-base.gradle"
|
|
|
|
configurations {
|
|
compileOnly.extendsFrom(dep)
|
|
}
|
|
|
|
version = file('../version').text
|
|
group = 'io.xpipe'
|
|
archivesBaseName = 'beacon'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
}
|