xpipe/core/build.gradle

27 lines
594 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"
2021-12-02 07:17:54 +13:00
apply from: "$rootDir/deps/jackson.gradle"
2022-01-10 19:10:44 +13:00
apply from: "$rootDir/deps/lombok.gradle"
apply from: "$rootDir/deps/junit.gradle"
2021-12-15 13:50:00 +13:00
2022-05-04 01:26:31 +12:00
configurations {
compileOnly.extendsFrom(dep)
2022-06-18 10:29:41 +12:00
testImplementation.extendsFrom(dep)
2022-05-04 01:26:31 +12:00
}
2022-06-18 11:17:08 +12:00
version = file('../misc/version').text
2022-01-10 19:10:44 +13:00
group = 'io.xpipe'
2022-09-02 11:41:51 +12:00
archivesBaseName = 'xpipe-core'
2021-12-15 13:50:00 +13:00
2022-01-10 19:10:44 +13:00
repositories {
mavenCentral()
2021-12-15 13:50:00 +13:00
}
2022-08-13 03:26:01 +12:00
2022-08-13 18:36:41 +12:00
apply from: 'publish.gradle'
apply from: "$rootDir/deps/publish-base.gradle"