xpipe/core/build.gradle

31 lines
875 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-10-16 03:43:10 +13:00
apply from: "$projectDir/../deps/java.gradle"
apply from: "$projectDir/../deps/lombok.gradle"
apply from: "$projectDir/../deps/junit.gradle"
2021-12-15 13:50:00 +13:00
2022-09-30 01:51:02 +13:00
compileJava {
options.compilerArgs << '-parameters'
}
2022-09-17 15:08:36 +12:00
2022-10-16 03:06:02 +13:00
dependencies {
2022-09-17 15:08:36 +12:00
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.13.0"
implementation group: 'com.fasterxml.jackson.module', name: 'jackson-module-parameter-names', version: "2.13.0"
implementation group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: "2.13.0"
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'
2022-10-16 03:43:10 +13:00
apply from: "$projectDir/../deps/publish-base.gradle"