Files
my-gradle-plugins/dependency-export/sample/groovy/build.gradle

31 lines
451 B
Groovy

buildscript {
repositories {
mavenLocal()
}
dependencies {
classpath "net.woggioni.gradle:dependency-export:0.1"
}
}
plugins {
id "net.woggioni.gradle.dependency-export" version "0.1"
}
repositories {
jcenter()
mavenLocal()
}
exportDependencies {
configurationName = 'runtimeCl'
}
renderDependencies {
format = "svg"
}
dependencies {
runtime("org.hibernate:hibernate-core:5.4.13.Final")
}