File tree Expand file tree Collapse file tree
src/main/groovy/br/com/bluesoft/bee/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ mainClassName = "br.com.bluesoft.bee.Bee"
1616
1717group = ' br.com.bluesoft.bee'
1818def artifact = ' bee'
19- version = ' 1.111 '
19+ version = ' 1.112 '
2020
2121def javaVersion = JavaVersion . VERSION_1_8
2222sourceCompatibility = javaVersion;
@@ -33,8 +33,8 @@ dependencies {
3333 implementation ' org.apache.groovy:groovy:4.0.22'
3434 implementation ' org.apache.groovy:groovy-sql:4.0.22'
3535 implementation ' org.apache.groovy:groovy-cli-commons:4.0.22'
36- implementation ' com.fasterxml.jackson.core:jackson-databind:2.17.2 '
37- implementation ' com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.11.2 '
36+ implementation ' com.fasterxml.jackson.core:jackson-databind:2.21.0 '
37+ implementation ' com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.21.0 '
3838 testImplementation " org.spockframework:spock-core:2.3-groovy-4.0"
3939 testImplementation ' org.spockframework:spock-junit4:2.3-groovy-4.0'
4040 testImplementation ' cglib:cglib-nodep:3.2.12'
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ import br.com.bluesoft.bee.model.message.Message
3636import br.com.bluesoft.bee.model.message.MessageLevel
3737import br.com.bluesoft.bee.model.message.MessageType
3838import com.fasterxml.jackson.annotation.JsonAutoDetect
39+ import com.fasterxml.jackson.annotation.JsonInclude
3940import groovy.transform.AutoClone
4041
4142import java.text.MessageFormat
@@ -46,7 +47,8 @@ class TableColumn {
4647
4748 String name
4849 String type
49- Integer size
50+ @JsonInclude (JsonInclude.Include .NON_NULL )
51+ Integer size = null
5052 String sizeType
5153 Integer scale = 0
5254 Boolean nullable = false
You can’t perform that action at this time.
0 commit comments