xpipe/api/build.gradle

38 lines
855 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-12-19 06:04:51 +13:00
apply from: "$projectDir/../gradle_scripts/java.gradle"
apply from: "$projectDir/../gradle_scripts/junit.gradle"
2022-01-10 19:10:44 +13:00
2022-09-17 15:08:36 +12:00
System.setProperty('excludeExtensionLibrary', 'true')
2022-12-19 06:04:51 +13:00
apply from: "$projectDir/../gradle_scripts/extension_test.gradle"
2022-09-17 15:08:36 +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-api'
2021-12-02 07:17:54 +13:00
repositories {
mavenCentral()
2021-12-15 13:50:00 +13:00
}
2021-12-02 07:17:54 +13:00
2022-06-18 11:17:08 +12:00
test {
2022-08-13 03:26:01 +12:00
enabled = true
2022-06-18 11:17:08 +12:00
}
2021-12-02 07:17:54 +13:00
dependencies {
2022-09-02 11:41:51 +12:00
api project(':core')
2021-12-02 07:17:54 +13:00
implementation project(':beacon')
2022-09-02 11:41:51 +12:00
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.13.0"
2021-12-02 07:17:54 +13:00
}
2022-08-13 03:26:01 +12:00
configurations {
testImplementation.extendsFrom(dep)
}
2022-08-13 18:36:41 +12:00
apply from: 'publish.gradle'
2022-12-19 06:04:51 +13:00
apply from: "$projectDir/../gradle_scripts/publish-base.gradle"