Skip to content

Commit

Permalink
Switch to SpringBoot 2.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
murdos committed May 15, 2020
1 parent 3a6cc79 commit 38f5d27
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion generators/generator-constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const JIB_VERSION = '2.2.0';
// Libraries version
const JHIPSTER_DEPENDENCIES_VERSION = '3.8.0-SB2.3-SNAPSHOT';
// The spring-boot version should match the one managed by https://mvnrepository.com/artifact/io.github.jhipster/jhipster-dependencies/JHIPSTER_DEPENDENCIES_VERSION
const SPRING_BOOT_VERSION = '2.3.0.RC1';
const SPRING_BOOT_VERSION = '2.3.0.RELEASE';
const LIQUIBASE_VERSION = '3.8.9';
const liquibaseSemVer = semver.parse(LIQUIBASE_VERSION);
const LIQUIBASE_DTD_VERSION = `${liquibaseSemVer.major}.${liquibaseSemVer.minor}`;
Expand Down
2 changes: 1 addition & 1 deletion generators/server/templates/build.gradle.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ repositories {
mavenLocal()
mavenCentral()
jcenter()
<%_ if (!SPRING_BOOT_VERSION.endsWith('-RELEASE')) { _%>
<%_ if (!SPRING_BOOT_VERSION.endsWith('RELEASE')) { _%>
maven { url 'https://repo.spring.io/milestone' }
<%_ } _%>
<%_ if (reactive && (applicationType === 'gateway' || applicationType === 'monolith')) { _%>
Expand Down
4 changes: 2 additions & 2 deletions generators/server/templates/pom.xml.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</snapshots>
</repository>
<%_ } _%>
<%_ if (!SPRING_BOOT_VERSION.endsWith('-RELEASE') || reactive) { _%>
<%_ if (!SPRING_BOOT_VERSION.endsWith('RELEASE') || reactive) { _%>
<repository>
<id>spring-milestone</id>
<url>https://repo.spring.io/milestone</url>
Expand All @@ -56,7 +56,7 @@
</repositories>

<pluginRepositories>
<%_ if (!SPRING_BOOT_VERSION.endsWith('-RELEASE')) { _%>
<%_ if (!SPRING_BOOT_VERSION.endsWith('RELEASE')) { _%>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
Expand Down
2 changes: 1 addition & 1 deletion generators/server/templates/settings.gradle.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
-%>

pluginManagement {
<%_ if (!SPRING_BOOT_VERSION.endsWith('-RELEASE')) { _%>
<%_ if (!SPRING_BOOT_VERSION.endsWith('RELEASE')) { _%>
repositories {
maven { url 'https://repo.spring.io/milestone' }
gradlePluginPortal()
Expand Down

0 comments on commit 38f5d27

Please sign in to comment.