Skip to content

Commit

Permalink
Generate Spring Boot Configuration metadata file
Browse files Browse the repository at this point in the history
Closes gh-25
  • Loading branch information
rainboyan committed Nov 13, 2024
1 parent bef3912 commit 6748b9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions grace-scaffolding-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ dependencies {
implementation "org.graceframework:grace-datastore-gorm-validation:$gormVersion"
implementation "org.graceframework:grace-web-url-mappings:$graceVersion"
compileOnly "jakarta.annotation:jakarta.annotation-api:$jakartaAnnotationVersion"
api "org.springframework.boot:spring-boot-autoconfigure"
annotationProcessor "org.springframework.boot:spring-boot-autoconfigure-processor"

testImplementation "org.spockframework:spock-core:$spockVersion"
testImplementation "net.bytebuddy:byte-buddy:$byteBuddyVersion"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.MessageSource;
import org.springframework.context.annotation.Bean;
import org.springframework.core.Ordered;

import grails.web.mapping.LinkGenerator;

Expand All @@ -25,7 +26,7 @@
import org.grails.scaffolding.registry.DomainRendererRegisterer;

@AutoConfiguration
@AutoConfigureOrder
@AutoConfigureOrder(Ordered.LOWEST_PRECEDENCE)
public class ScaffoldingBeanConfiguration {

@Bean
Expand Down

0 comments on commit 6748b9d

Please sign in to comment.