xpipe/beacon/build.gradle

30 lines
564 B
Groovy
Raw Normal View History

2021-12-02 07:17:54 +13:00
plugins {
2022-01-10 19:10:44 +13:00
id 'java-library'
id 'maven-publish'
id 'signing'
2021-12-02 07:17:54 +13:00
id "org.moditect.gradleplugin" version "1.0.0-rc3"
}
2022-01-10 19:10:44 +13:00
apply from: "$rootDir/deps/java.gradle"
apply from: "$rootDir/deps/jackson.gradle"
apply from: "$rootDir/deps/lombok.gradle"
2022-05-04 01:26:31 +12:00
configurations {
compileOnly.extendsFrom(dep)
}
2022-06-18 11:17:08 +12:00
version = file('../misc/version').text
2022-01-10 19:10:44 +13:00
group = 'io.xpipe'
archivesBaseName = 'beacon'
2021-12-02 07:17:54 +13:00
repositories {
mavenCentral()
}
dependencies {
implementation project(':core')
}
2022-08-13 18:36:41 +12:00
apply from: 'publish.gradle'
apply from: "$rootDir/deps/publish-base.gradle"