Skip to content

Commit

Permalink
spring boot upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Mautsch committed Dec 6, 2024
1 parent 3751a1b commit b5b3354
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ val baseImage = "ibm-semeru-runtimes:open-21.0.4.1_7-jre-focal@sha256:8b94f8b14f
plugins {
java
jacoco
id("org.springframework.boot") version "3.3.5"
id("org.springframework.boot") version "3.4.0"
id("io.spring.dependency-management") version "1.1.6"
id("org.graalvm.buildtools.native") version "0.10.3"
id("org.graalvm.buildtools.native") version "0.10.4"

id("com.google.cloud.tools.jib") version "3.4.4"
id("net.researchgate.release") version "3.0.2"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=org.goafabric
version=3.3.5-SNAPSHOT
version=3.4.0-SNAPSHOT
4 changes: 4 additions & 0 deletions src/main/java/org/goafabric/core/Application.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package org.goafabric.core;

import org.flywaydb.core.internal.publishing.PublishingConfigurationExtension;
import org.springframework.aot.hint.MemberCategory;
import org.springframework.aot.hint.annotation.RegisterReflection;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand All @@ -12,6 +15,7 @@
*/

@SpringBootApplication
@RegisterReflection(classes = PublishingConfigurationExtension.class, memberCategories = MemberCategory.INVOKE_PUBLIC_METHODS)
public class Application {

public static void main(String[] args){
Expand Down

0 comments on commit b5b3354

Please sign in to comment.