mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
40 lines
1.2 KiB
Groovy
40 lines
1.2 KiB
Groovy
plugins {
|
|
id 'java-library'
|
|
id 'maven-publish'
|
|
id 'signing'
|
|
id "org.moditect.gradleplugin" version "1.0.0-rc3"
|
|
}
|
|
|
|
apply from: "$rootDir/deps/java.gradle"
|
|
apply from: "$rootDir/deps/javafx.gradle"
|
|
apply from: "$rootDir/deps/lombok.gradle"
|
|
|
|
configurations {
|
|
compileOnly.extendsFrom(dep)
|
|
}
|
|
|
|
version = file('../misc/version').text
|
|
group = 'io.xpipe'
|
|
archivesBaseName = 'xpipe-extension'
|
|
|
|
dependencies {
|
|
api project(':core')
|
|
api project(':beacon')
|
|
api project(':api')
|
|
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: "2.13.0"
|
|
api group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: "2.13.0"
|
|
|
|
compileOnly group: 'org.kordamp.ikonli', name: 'ikonli-javafx', version: "12.2.0"
|
|
compileOnly group: 'org.fxmisc.richtext', name: 'richtextfx', version: '0.10.9'
|
|
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'
|
|
}
|
|
|
|
|
|
|
|
apply from: 'publish.gradle'
|
|
apply from: "$rootDir/deps/publish-base.gradle"
|