mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
40 lines
1.1 KiB
Groovy
40 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('../version').text
|
|
group = 'io.xpipe'
|
|
archivesBaseName = 'extension'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.junit.jupiter:junit-jupiter-api:5.8.2'
|
|
implementation project(':core')
|
|
implementation project(':charsetter')
|
|
|
|
implementation 'io.xpipe:fxcomps:0.1'
|
|
implementation 'com.google.code.gson:gson:2.9.0'
|
|
implementation 'org.controlsfx:controlsfx:11.1.1'
|
|
}
|