{"id":48819350,"url":"https://github.com/vaadin/base-starter-spring-gradle","last_synced_at":"2026-04-14T14:02:12.095Z","repository":{"id":37099269,"uuid":"236938858","full_name":"vaadin/base-starter-spring-gradle","owner":"vaadin","description":"Starting point for a Spring Boot based Vaadin application using Gradle build","archived":false,"fork":false,"pushed_at":"2026-03-30T14:10:30.000Z","size":2516,"stargazers_count":29,"open_issues_count":3,"forks_count":24,"subscribers_count":3,"default_branch":"v25","last_synced_at":"2026-03-30T16:22:03.743Z","etag":null,"topics":["gradle","npm","spring","spring-boot","vaadin","webpack"],"latest_commit_sha":null,"homepage":"https://github.com/vaadin/vaadin-gradle-plugin","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vaadin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-01-29T08:47:38.000Z","updated_at":"2026-03-30T14:10:32.000Z","dependencies_parsed_at":"2023-10-05T12:04:05.670Z","dependency_job_id":"a1d304c9-a37f-453a-a80e-c20cb2ec9d07","html_url":"https://github.com/vaadin/base-starter-spring-gradle","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vaadin/base-starter-spring-gradle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fbase-starter-spring-gradle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fbase-starter-spring-gradle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fbase-starter-spring-gradle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fbase-starter-spring-gradle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vaadin","download_url":"https://codeload.github.com/vaadin/base-starter-spring-gradle/tar.gz/refs/heads/v25","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vaadin%2Fbase-starter-spring-gradle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31799411,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gradle","npm","spring","spring-boot","vaadin","webpack"],"created_at":"2026-04-14T14:02:11.152Z","updated_at":"2026-04-14T14:02:12.086Z","avatar_url":"https://github.com/vaadin.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vaadin Gradle Skeleton Starter Spring Boot\n\nThis project demos the possibility of having Vaadin project in npm+webpack mode using Gradle.\nPlease see the [Starting a Vaadin project using Gradle](https://vaadin.com/docs/latest/getting-started/project/gradle) for the documentation.\n\n\nPrerequisites:\n* Java 21 or higher\n* Git\n* (Optionally): Intellij Community\n* (Optionally): Node.js and npm, if you have JavaScript/TypeScript customisations in your project.\n  * You can either let the Vaadin Gradle plugin to install `Node.js` and `npm/pnpm` for you automatically, or you can install it to your OS:\n  * Windows: [node.js Download site](https://nodejs.org/en/download/) - use the .msi 64-bit installer\n  * Linux: `sudo apt install npm`\n\n## Vaadin Versions\n\n* The [v25](https://github.com/vaadin/base-starter-spring-gradle) branch (the default one) contains the example app for Vaadin latest version\n* See other branches for other Vaadin versions.\n\n## Running With Spring Boot via Gradle In Development Mode\n\nRun the following command in this repo:\n\n```bash\n./gradlew clean bootRun\n```\n\nNow you can open the [http://localhost:8080](http://localhost:8080) with your browser.\n\n## Running With Spring Boot from your IDE In Development Mode\n\nRun the following command in this repo, to create necessary Vaadin config files:\n\n```bash\n./gradlew clean vaadinPrepareFrontend\n```\n\nThe `build/vaadin-generated/` folder will now contain proper configuration files.\n\nOpen the `DemoApplication` class, and Run/Debug its main method from your IDE.\n\nNow you can open the [http://localhost:8080](http://localhost:8080) with your browser.\n\n## Building In Production Mode\n\nRun the following command in this repo:\n\n```bash\n./gradlew clean bootJar\n```\n\nThat will build this app in production mode as a runnable jar archive; please find the jar file in `build/libs/base-starter-spring-gradle.jar`.\nYou can run the JAR file with:\n\n```bash\ncd build/libs/\njava -jar base-starter-spring-gradle.jar\n```\n\nNow you can open the [http://localhost:8080](http://localhost:8080) with your browser.\n\n### Building In Production On CI\n\nUsually the CI images will not have node.js+npm available. Vaadin uses pre-compiled bundle when possible, i.e. Node.js is not always needed.\nOr Vaadin Gradle Plugin will download Node.js for you automatically if it finds any front-end customisations, there is no need for you to do anything.\nTo build your app for production in CI, just run:\n\n```bash\n./gradlew clean bootJar\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaadin%2Fbase-starter-spring-gradle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvaadin%2Fbase-starter-spring-gradle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvaadin%2Fbase-starter-spring-gradle/lists"}