Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to Micronaut 4.3.6 #325

Merged
merged 4 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions generators/constants.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

module.exports = {
JAVA_VERSION: 17,
GRADLE_VERSION: '8.5',
GRADLE_VERSION: '8.6',
DOCKER_REDIS: 'redis:6.0.10',
sqlDb: {
h2Disk: {
Expand Down Expand Up @@ -52,11 +52,11 @@ module.exports = {
},
},
versions: {
micronaut: '4.3.4',
micronaut: '4.3.6',
micronautData: '4.6.2',
micronautDiscoveryClient: '4.1.0',
micronautDiscoveryClient: '4.2.0',
micronautOpenApi: '4.2.0',
netty: '4.1.97.Final',
netty: '4.1.107.Final',
rxJava3: '2.3.0',
hibernate: '6.4.4.Final',
prometheusSimpleclient: '0.16.0',
Expand Down
2 changes: 1 addition & 1 deletion generators/server/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public class`,
this.log.ok('Micronaut application generated successfully.');

let executable = 'mvnw';
if (this.buildTool === 'gradle') {
if (this.jhipsterConfigWithDefaults.buildTool === 'gradle') {
executable = 'gradlew';
}
let logMsgComment = '';
Expand Down
2 changes: 1 addition & 1 deletion generators/server/templates/gradle.properties.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jaxb_runtime_version=2.3.2
<%_ } _%>

# gradle plugin version
micronaut_plugin_version=4.0.2
micronaut_plugin_version=4.3.4
git_properties_plugin_version=2.4.1
<%_ if (!skipClient) { _%>
gradle_node_plugin_version=2.2.4
Expand Down
Loading