2021-12-02 13:28:55 +00:00
|
|
|
plugins {
|
2022-01-10 06:10:44 +00:00
|
|
|
id 'java-library'
|
|
|
|
id 'maven-publish'
|
|
|
|
id 'signing'
|
2021-12-02 13:28:55 +00:00
|
|
|
id "org.moditect.gradleplugin" version "1.0.0-rc3"
|
|
|
|
}
|
|
|
|
|
2022-01-10 06:10:44 +00:00
|
|
|
apply from: "$rootDir/deps/java.gradle"
|
2021-12-02 13:28:55 +00:00
|
|
|
apply from: "$rootDir/deps/javafx.gradle"
|
2022-01-18 08:55:43 +00:00
|
|
|
apply from: "$rootDir/deps/richtextfx.gradle"
|
2022-01-08 03:30:16 +00:00
|
|
|
apply from: "$rootDir/deps/lombok.gradle"
|
2022-01-10 06:10:44 +00:00
|
|
|
|
2022-05-03 13:26:31 +00:00
|
|
|
configurations {
|
|
|
|
compileOnly.extendsFrom(dep)
|
|
|
|
}
|
|
|
|
|
2022-06-17 23:17:08 +00:00
|
|
|
version = file('../misc/version').text
|
2022-01-10 06:10:44 +00:00
|
|
|
group = 'io.xpipe'
|
2022-09-01 23:41:51 +00:00
|
|
|
archivesBaseName = 'xpipe-extension'
|
2021-12-02 13:28:55 +00:00
|
|
|
|
|
|
|
dependencies {
|
2022-09-01 23:41:51 +00:00
|
|
|
api project(':core')
|
|
|
|
api project(':beacon')
|
|
|
|
api project(':api')
|
2022-09-17 03:08:36 +00:00
|
|
|
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.13.0"
|
2022-09-01 23:41:51 +00:00
|
|
|
api group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "2.13.0"
|
2022-03-09 21:51:04 +00:00
|
|
|
|
2022-09-17 03:08:36 +00:00
|
|
|
compileOnly group: 'org.kordamp.ikonli', name: 'ikonli-javafx', version: "12.2.0"
|
|
|
|
compileOnly 'net.synedra:validatorfx:0.3.1'
|
|
|
|
compileOnly 'org.junit.jupiter:junit-jupiter-api:5.9.0'
|
|
|
|
compileOnly 'com.jfoenix:jfoenix:9.0.10'
|
|
|
|
compileOnly 'io.xpipe:fxcomps:0.2.2'
|
|
|
|
compileOnly 'org.controlsfx:controlsfx:11.1.1'
|
|
|
|
compileOnly 'org.apache.commons:commons-lang3:3.12.0'
|
2021-12-02 13:28:55 +00:00
|
|
|
}
|
2022-08-13 06:36:41 +00:00
|
|
|
|
2022-09-17 03:08:36 +00:00
|
|
|
|
|
|
|
|
2022-08-13 06:36:41 +00:00
|
|
|
apply from: 'publish.gradle'
|
|
|
|
apply from: "$rootDir/deps/publish-base.gradle"
|