xpipe/extension/build.gradle

38 lines
1.1 KiB
Groovy
Raw Normal View History

2021-12-03 02:28:55 +13:00
plugins {
2022-01-10 19:10:44 +13:00
id 'java-library'
id 'maven-publish'
id 'signing'
2021-12-03 02:28:55 +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-03 02:28:55 +13:00
apply from: "$rootDir/deps/javafx.gradle"
2022-01-18 21:55:43 +13:00
apply from: "$rootDir/deps/richtextfx.gradle"
apply from: "$rootDir/deps/lombok.gradle"
2022-01-10 19:10:44 +13:00
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'
2022-09-02 11:41:51 +12:00
archivesBaseName = 'xpipe-extension'
2021-12-03 02:28:55 +13:00
dependencies {
2022-09-02 11:41:51 +12:00
api project(':core')
api project(':beacon')
api project(':api')
api group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "2.13.0"
2022-03-10 10:51:04 +13:00
2022-09-02 11:41:51 +12:00
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.13.0"
implementation group: 'org.kordamp.ikonli', name: 'ikonli-javafx', version: "12.2.0"
implementation 'net.synedra:validatorfx:0.3.1'
implementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
implementation 'com.jfoenix:jfoenix:9.0.10'
implementation 'io.xpipe:fxcomps:0.2.2'
2022-03-10 10:51:04 +13:00
implementation 'org.controlsfx:controlsfx:11.1.1'
2021-12-03 02:28:55 +13:00
}
2022-08-13 18:36:41 +12:00
apply from: 'publish.gradle'
apply from: "$rootDir/deps/publish-base.gradle"