Include library resources on classpath of AOT source generation
Closes gh-31803pull/31828/head
parent
c31ad5f175
commit
6da8c88b2b
@ -0,0 +1,15 @@
|
||||
plugins {
|
||||
id 'org.springframework.boot'
|
||||
id 'org.springframework.boot.aot'
|
||||
id 'java'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":library")
|
||||
}
|
||||
|
||||
task('generateAotSourcesClasspath') {
|
||||
doFirst {
|
||||
tasks.findByName('generateAotSources').classpath.files.each { println it }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue