Skip to content

Commit

Permalink
Grace Plugin Converters: Generating Spring Boot configuration metadat…
Browse files Browse the repository at this point in the history
…a files

Closes gh-667
  • Loading branch information
rainboyan committed Oct 30, 2024
1 parent 34b5373 commit 0f1f5b9
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
4 changes: 4 additions & 0 deletions grace-plugin-converters/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ dependencies {
transitive = false
}

api libs.spring.boot.autoconfigure
annotationProcessor libs.spring.boot.autoconfigureProcessor
annotationProcessor libs.spring.boot.configurationProcessor

testImplementation libs.json.unit
testRuntimeOnly libs.gson
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"groups": [],
"properties": [
{
"name": "grails.converters.encoding",
"type": "java.lang.String",
"defaultValue": "UTF-8"
},
{
"name": "grails.converters.default.circular.reference.behaviour",
"type": "java.lang.String",
"defaultValue": "DEFAULT"
},
{
"name": "grails.converters.default.pretty.print",
"type": "java.lang.Boolean",
"defaultValue": false
},
{
"name": "grails.converters.xml.default.deep",
"type": "java.lang.String"
},
{
"name": "grails.converters.json.date",
"type": "java.lang.String",
"defaultValue": "default"
},
{
"name": "grails.converters.json.default.deep",
"type": "java.lang.Boolean",
"defaultValue": false
},
{
"name": "grails.converters.json.cacheObjectMarshallerSelectionByClass",
"type": "java.lang.Boolean",
"defaultValue": true
},
{
"name": "grails.converters.json.circular.reference.behaviour",
"type": "java.lang.String",
"defaultValue": "DEFAULT"
},
{
"name": "grails.converters.json.pretty.print",
"type": "java.lang.Boolean",
"defaultValue": false
}
],
"hints": []
}

0 comments on commit 0f1f5b9

Please sign in to comment.