Test unresolved dependency analysis in the Gradle plugin

See gh-12784
This commit is contained in:
Andy Wilkinson
2018-04-06 09:05:35 +01:00
parent e3e404f9f9
commit 806978b8f1
2 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
buildscript {
dependencies {
classpath files(pluginClasspath.split(','))
}
}
apply plugin: 'org.springframework.boot'
apply plugin: 'java'
repositories {
flatDir { dirs 'libs' }
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter'
}