mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 17:10:27 +00:00
16 lines
396 B
Groovy
16 lines
396 B
Groovy
plugins {
|
|
id 'java'
|
|
id "org.moditect.gradleplugin" version "1.0.0-rc3"
|
|
}
|
|
|
|
apply from: "$rootDir/gradle/gradle_scripts/lombok.gradle"
|
|
apply from: "$rootDir/gradle/gradle_scripts/extension.gradle"
|
|
apply from: "$rootDir/gradle/gradle_scripts/commons.gradle"
|
|
|
|
configurations {
|
|
compileOnly.extendsFrom(dep)
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.apache.commons:commons-compress:1.21'
|
|
}
|