Rename 'generateAotSources' task to processAot'

See gh-31918
This commit is contained in:
Phillip Webb
2022-08-25 15:10:48 -07:00
parent 2f6354f633
commit c0b3d36205
8 changed files with 28 additions and 28 deletions

View File

@@ -8,8 +8,8 @@ dependencies {
implementation project(":library")
}
task('generateAotSourcesClasspath') {
task('processAotClasspath') {
doFirst {
tasks.findByName('generateAotSources').classpath.files.each { println it }
tasks.findByName('processAot').classpath.files.each { println it }
}
}

View File

@@ -12,8 +12,8 @@ dependencies {
implementation "org.hibernate.orm:hibernate-core:6.1.1.Final"
}
task('generateAotSourcesClasspath') {
task('processAotClasspath') {
doFirst {
tasks.findByName('generateAotSources').classpath.files.each { println it }
tasks.findByName('processAot').classpath.files.each { println it }
}
}