Hello,
we got some troubles updating an application from version 23 to 24.
It is based on Spring Boot with Kotlin and Gradle and configured for 3 environments: local/dev, staging and production
Locally the application is running on version 24 but on staging and production the containers always say
Running project in development mode with no access to folder ‘/mnt/space/work/camuce/portal’.
Build project in production mode instead, see Deploying to Production | Flow | Vaadin Docs"
Our build platform is space from intellij and the script has not been changed:
api.gradlew(“portal:vaadinBuildFrontend”)
api.gradlew(“portal:jib”,“-Pvaadin.productionMode”)
What we obviously tried:
- vaadin.productionMode=true in application.properties
- vaadin { productionMode=true} in build.gradle.kts
- com.vaadin:flow-server-production-mode dependency
Here are the dependencies with the current versions:
kotlin(“jvm”) version “1.9.23”
kotlin(“plugin.spring”) version “1.9.23”
kotlin(“plugin.jpa”) version “1.9.23”
kotlin(“plugin.allopen”) version “1.9.23”
kotlin(“plugin.noarg”) version “1.9.23”
id(“org.jetbrains.dokka”) version “1.9.20”
id(“org.ajoberstar.grgit”) version “5.2.2”
id(“com.vaadin”) version “24.4.1”
id(“org.springframework.boot”) version “3.1.5”
id(“io.spring.dependency-management”) version “1.1.4”
id(“com.google.cloud.tools.jib”) version “3.4.0”
Any ideas? We are stuck in version 23 because of this problem
Greetings,
Marcel