Error while starting the localhost:8080

While hitting the url localhost:8080, error Failed to load the widgetset: ./VAADIN/widgetsets/

image

I am using the below dependency in build.gradle:

implementation ‘io.jmix.core:jmix-core-starter’
implementation ‘io.jmix.data:jmix-eclipselink-starter’
implementation ‘io.jmix.ui:jmix-ui-starter’
implementation ‘io.jmix.ui:jmix-ui-data-starter’
implementation ‘io.jmix.security:jmix-security-starter’
implementation ‘io.jmix.security:jmix-security-ui-starter’
implementation ‘io.jmix.security:jmix-security-data-starter’
implementation ‘io.jmix.localfs:jmix-localfs-starter’

implementation 'org.springframework.boot:spring-boot-starter-web'

You should also have the following dependency:

implementation 'io.jmix.ui:jmix-ui-widgets-compiled'

It’s added automatically when you create a new project from template.

I am also getting same issue in old jmix project after upgrade to 1.3.2.

The file mentioned is included but no effect, the prpblem remains
Other recent projects also don;t have this file but working perfectly.

This is my build gradle file

 widgets("io.jmix.ui:jmix-ui-widgets")
    implementation('io.jmix.ui:jmix-ui-widgets-compiled')
    implementation("org.postgresql:postgresql")
    implementation("io.jmix.datatools:jmix-datatools-starter")
    implementation("io.jmix.datatools:jmix-datatools-ui-starter")
    widgets("io.jmix.ui:jmix-charts-widgets")
    implementation("io.jmix.ui:jmix-charts-starter")
    implementation("io.jmix.dashboards:jmix-dashboards-ui-starter")
    implementation("io.jmix.dashboards:jmix-dashboards-starter")
    implementation("io.jmix.email:jmix-email-starter")
    implementation("io.jmix.email:jmix-email-ui-starter")
    implementation("io.jmix.ui:jmix-ui-export-starter")
    implementation("io.jmix.ui:jmix-pivot-table-starter")
    widgets("io.jmix.ui:jmix-pivot-table-widgets")
    implementation("io.jmix.reports:jmix-reports-starter")
    implementation("io.jmix.reports:jmix-reports-ui-starter")
    implementation("io.jmix.reports:jmix-reports-rest-starter")
    implementation("io.jmix.search:jmix-search-ui-starter")
    implementation("io.jmix.search:jmix-search-starter")
    implementation("io.jmix.maps:jmix-maps-starter")
    widgets("io.jmix.maps:jmix-maps-ui-widgets")
    implementation("io.jmix.maps:jmix-maps-ui-starter")
    themes("io.jmix.ui:jmix-ui-themes")
    implementation("io.jmix.ui:jmix-ui-themes")

    themes 'io.jmix.dashboards:jmix-dashboards-ui'
    implementation("io.jmix.appsettings:jmix-appsettings-ui-starter")
    implementation("io.jmix.appsettings:jmix-appsettings-starter")
    implementation("io.jmix.notifications:jmix-notifications-ui-starter")
    implementation("io.jmix.notifications:jmix-notifications-starter")
    implementation('javax.media:jai_core:1.1.3')
    implementation("org.geotools:gt-referencing:26.2")
}

test {
    useJUnitPlatform()
}

compileWidgets {
    generate "com.sheel.sheelrisk.widgets.CustomWidgetSet"
    includePaths("**/io/jmix/**/widget/**", "**/com/sheel/sheelrisk/widgets/**")
}

thanks

I have upgraded a old project and it is running perfectly. I observed that in this project, following statement is showing error in build.gradle
Statement

 testImplementation('org.springframework.boot:spring-boot-starter-test') {
        exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
    }

Error-

'exclude' in 'org.gradle.api.artifacts.ModuleDependency' cannot be applied to '(['group':java.lang.String, 'module':java.lang.String])' 
 Inspection info: Reports assignments with incompatible types.
Such assignments might result in various runtime exceptions.

Is this is the issue.

Please guide.

I am not able to find solution, so re-migrated old project and copied entity and screen from updated project. It is working now.