Skip to content

Commit

Permalink
Hacking
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Nov 21, 2022
1 parent c93e248 commit 0a029cc
Showing 1 changed file with 32 additions and 30 deletions.
Expand Up @@ -232,42 +232,44 @@ publishing.publications.withType(MavenPublication) {
profile {
delegate.id("native")
build {
plugins {
plugin {
delegate.groupId('org.springframework.boot')
delegate.artifactId('spring-boot-maven-plugin')
configuration {
image {
delegate.builder("paketobuildpacks/builder:tiny");
env {
delegate.BP_NATIVE_IMAGE("true")
pluginManagement {
plugins {
plugin {
delegate.groupId('org.springframework.boot')
delegate.artifactId('spring-boot-maven-plugin')
configuration {
image {
delegate.builder("paketobuildpacks/builder:tiny");
env {
delegate.BP_NATIVE_IMAGE("true")
}
}
}
}
executions {
execution {
delegate.id('process-aot')
goals {
delegate.goal('process-aot')
executions {
execution {
delegate.id('process-aot')
goals {
delegate.goal('process-aot')
}
}
}
}
}
plugin {
delegate.groupId('org.graalvm.buildtools')
delegate.artifactId('native-maven-plugin')
configuration {
delegate.classesDirectory('${project.build.outputDirectory}')
metadataRepository {
delegate.enabled('true')
plugin {
delegate.groupId('org.graalvm.buildtools')
delegate.artifactId('native-maven-plugin')
configuration {
delegate.classesDirectory('${project.build.outputDirectory}')
metadataRepository {
delegate.enabled('true')
}
delegate.requiredVersion('22.3')
}
delegate.requiredVersion('22.3')
}
executions {
execution {
delegate.id('add-reachability-metadata')
goals {
delegate.goal('add-reachability-metadata')
executions {
execution {
delegate.id('add-reachability-metadata')
goals {
delegate.goal('add-reachability-metadata')
}
}
}
}
Expand Down

0 comments on commit 0a029cc

Please sign in to comment.