Skip to content

Commit

Permalink
Merge pull request #272 from Open-MBEE/release/4.0.20
Browse files Browse the repository at this point in the history
Release/4.0.20
  • Loading branch information
HuiJun authored Mar 7, 2024
2 parents 914daa7 + 95a9d95 commit f7ac4a8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
13 changes: 5 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ ext {
'spring-aspects' : "org.springframework:spring-aspects:$springFrameworkVersion",
'spring-data-commons' : "org.springframework.data:spring-data-commons:$springDataVersion",
'spring-data-jpa' : "org.springframework.data:spring-data-jpa:$springDataVersion",
'jackson-annotations' : "com.fasterxml.jackson.core:jackson-annotations",
'jackson-databind' : "com.fasterxml.jackson.core:jackson-databind",
'jackson-datatype-hibernate5' : "com.fasterxml.jackson.datatype:jackson-datatype-hibernate5",
'jackson-datatype-jsr310' : "com.fasterxml.jackson.datatype:jackson-datatype-jsr310",
'jackson-annotations' : "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion",
'jackson-databind' : "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion",
'jackson-datatype-hibernate5' : "com.fasterxml.jackson.datatype:jackson-datatype-hibernate5:$jacksonVersion",
'jackson-datatype-jsr310' : "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jacksonVersion",
'spring-boot-starter-test' : 'org.springframework.boot:spring-boot-starter-test:2.2.4.RELEASE'
]
}
Expand Down Expand Up @@ -62,6 +62,7 @@ subprojects {

group = "org.openmbee.mms"
version = rootProject.version
ext['jackson-bom.version'] = jacksonVersion

Map<String, String> commonDependencies = rootProject.ext.commonDependencies

Expand Down Expand Up @@ -146,10 +147,6 @@ subprojects {
exclude group: "org.slf4j", module: "slf4j-log4j12"
exclude group: "log4j", module: "log4j"
}

dependencies {
implementation enforcedPlatform("com.fasterxml.jackson:jackson-bom:${jacksonVersion}")
}
}

signing {
Expand Down
2 changes: 1 addition & 1 deletion data/data.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ dependencies {
api commonDependencies.'hibernate-core'

testImplementation commonDependencies.'spring-boot-starter-test'
}
}
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
master_doc = 'index'

# The full version, including alpha/beta/rc tags
release = '4.0.19'
release = '4.0.20'


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -57,4 +57,4 @@
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ['_static']
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
version=4.0.19
version=4.0.20
group=org.openmbee.mms

springBootVersion=2.7.18
springFrameworkVersion=5.3.31
springSecurityVersion=5.7.11
springDataVersion=2.7.18
jacksonVersion=2.16.1
jacksonBomVersion=2.16.1
elasticVersion=7.8.1

0 comments on commit f7ac4a8

Please sign in to comment.