mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
15 lines
307 B
Groovy
15 lines
307 B
Groovy
plugins {
|
|
id 'java'
|
|
id "org.moditect.gradleplugin" version "1.0.0-rc3"
|
|
}
|
|
|
|
apply from: "$rootDir/gradle/gradle_scripts/commons.gradle"
|
|
apply from: "$rootDir/gradle/gradle_scripts/extension.gradle"
|
|
|
|
configurations {
|
|
compileOnly.extendsFrom(dep)
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(':app')
|
|
}
|