mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 23:20:23 +00:00
30 lines
659 B
Groovy
30 lines
659 B
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/jackson.gradle"
|
|
apply from: "$rootDir/deps/lombok.gradle"
|
|
apply from: "$rootDir/deps/junit.gradle"
|
|
apply from: 'publish.gradle'
|
|
apply from: "$rootDir/deps/publish-base.gradle"
|
|
|
|
configurations {
|
|
compileOnly.extendsFrom(dep)
|
|
testImplementation.extendsFrom(dep)
|
|
}
|
|
|
|
version = file('../misc/version').text
|
|
group = 'io.xpipe'
|
|
archivesBaseName = 'core'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies{
|
|
compileOnly 'org.apache.commons:commons-exec:1.3'
|
|
}
|