mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 23:50:32 +00:00
41 lines
1.1 KiB
Groovy
41 lines
1.1 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/richtextfx.gradle"
|
|
apply from: "$rootDir/deps/preferencesfx.gradle"
|
|
apply from: "$rootDir/deps/jackson.gradle"
|
|
apply from: "$rootDir/deps/commons.gradle"
|
|
apply from: "$rootDir/deps/lombok.gradle"
|
|
apply from: "$rootDir/deps/ikonli.gradle"
|
|
apply from: "$rootDir/deps/slf4j.gradle"
|
|
apply from: 'publish.gradle'
|
|
apply from: "$rootDir/deps/publish-base.gradle"
|
|
|
|
configurations {
|
|
compileOnly.extendsFrom(dep)
|
|
}
|
|
|
|
version = file('../misc/version').text
|
|
group = 'io.xpipe'
|
|
archivesBaseName = 'extension'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'net.synedra:validatorfx:0.3.1'
|
|
compileOnly 'org.junit.jupiter:junit-jupiter-api:5.8.2'
|
|
compileOnly 'com.jfoenix:jfoenix:9.0.10'
|
|
implementation project(':core')
|
|
|
|
implementation project(':fxcomps')
|
|
//implementation 'io.xpipe:fxcomps:0.2'
|
|
implementation 'org.controlsfx:controlsfx:11.1.1'
|
|
}
|