{"id":42058507,"url":"https://github.com/rife2/bld-spring-boot","last_synced_at":"2026-01-26T07:36:12.384Z","repository":{"id":334175593,"uuid":"712101970","full_name":"rife2/bld-spring-boot","owner":"rife2","description":"bld Extension to help create Spring Boot web applications","archived":false,"fork":false,"pushed_at":"2026-01-23T07:05:00.000Z","size":19126,"stargazers_count":7,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-24T00:33:17.554Z","etag":null,"topics":["bld","build","build-system","build-tool","build-tool-plugin","jar","java","spring","springboot","sprint-boot","war","web-application","webapp","webapplication"],"latest_commit_sha":null,"homepage":"","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/rife2.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","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":"2023-10-30T19:46:17.000Z","updated_at":"2026-01-23T07:05:03.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rife2/bld-spring-boot","commit_stats":null,"previous_names":["rife2/bld-spring-boot"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/rife2/bld-spring-boot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Fbld-spring-boot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Fbld-spring-boot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Fbld-spring-boot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Fbld-spring-boot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rife2","download_url":"https://codeload.github.com/rife2/bld-spring-boot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rife2%2Fbld-spring-boot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28769851,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T06:37:25.426Z","status":"ssl_error","status_checked_at":"2026-01-26T06:37:23.039Z","response_time":59,"last_error":"SSL_read: 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":["bld","build","build-system","build-tool","build-tool-plugin","jar","java","spring","springboot","sprint-boot","war","web-application","webapp","webapplication"],"created_at":"2026-01-26T07:36:10.437Z","updated_at":"2026-01-26T07:36:12.379Z","avatar_url":"https://github.com/rife2.png","language":"Java","readme":"# [b\u003cspan style=\"color:orange\"\u003el\u003c/span\u003ed](https://rife2.com/bld) Extension to Help Create [Spring Boot](https://spring.io/projects/spring-boot) Web Applications\n\n[![License](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n[![Java](https://img.shields.io/badge/java-17%2B-blue)](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)\n[![bld](https://img.shields.io/badge/2.3.0-FA9052?label=bld\u0026labelColor=2392FF)](https://rife2.com/bld)\n[![Release](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Frepo.rife2.com%2Freleases%2Fcom%2Fuwyn%2Frife2%2Fbld-spring-boot%2Fmaven-metadata.xml\u0026color=blue)](https://repo.rife2.com/#/releases/com/uwyn/rife2/bld-spring-boot)\n[![Snapshot](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Frepo.rife2.com%2Fsnapshots%2Fcom%2Fuwyn%2Frife2%2Fbld-spring-boot%2Fmaven-metadata.xml\u0026label=snapshot)](https://repo.rife2.com/#/snapshots/com/uwyn/rife2/bld-spring-boot)\n[![GitHub CI](https://github.com/rife2/bld-spring-boot/actions/workflows/bld.yml/badge.svg)](https://github.com/rife2/bld-spring-boot/actions/workflows/bld.yml)\n\nTo install the latest version, add the following to the `lib/bld/bld-wrapper.properties` file:\n\n```properties\nbld.extension-spring-boot=com.uwyn.rife2:bld-spring-boot\n```\n\nFor more information, please refer to the [extensions](https://github.com/rife2/bld/wiki/Extensions) documentation.\n\n## Create an Executable JAR\n\nTo create a [Spring Boot executable Java Archive](https://docs.spring.io/spring-boot/docs/current/reference/html/executable-jar.html)\n(JAR) from the current project:\n\n```java\n@BuildCommand(summary = \"Creates an executable JAR for the project\")\npublic void bootjar() throws Exception {\n    new BootJarOperation()\n            .fromProject(this)\n            .execute();\n}\n```\n\n```console\n./bld compile bootjar\n```\n\n- [View Example Projects](https://github.com/rife2/bld-spring-boot/tree/main/examples)\n\n## Create an Executable WAR\n\nTo create a [Spring Boot executable Web Archive](https://docs.spring.io/spring-boot/docs/current/reference/html/executable-jar.html#appendix.executable-jar.nested-jars.war-structure)\n(WAR) from the current project:\n\n```java\n@BuildCommand(summary = \"Creates an executable WAR for the project\")\npublic void bootwar() throws Exception {\n    new BootWarOperation()\n            .fromProject(this)\n            .execute();\n}\n```\n\n```console\n./bld compile bootwar\n```\n\n- [View Examples Project](https://github.com/rife2/bld-spring-boot/tree/main/examples)\n\n## Required Dependency\n\nDon't forget to include the _Spring Boot Loader_ dependency to your project:\n\n```java\nscope(standalone)\n    .include(dependency(\"org.springframework.boot:spring-boot-loader:3.5.10\"));\n```\n\nor\n\n```java\nscope(standalone)\n    .include(dependency(\"org.springframework.boot:spring-boot-loader:4.0.1\"));\n```\n\nPlease check the [BootJarOperation documentation](https://rife2.github.io/bld-spring-boot/rife/bld/extension/BootJarOperation.html#method-summary)\nor [BootWarOperation documentation](https://rife2.github.io/bld-spring-boot/rife/bld/extension/BootWarOperation.html#method-summary)\nfor all available configuration options.\n\nYou may also want to have a look at the [Spring Boot Web Application Example for bld](https://github.com/rife2/spring-boot-bld-example) template.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frife2%2Fbld-spring-boot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frife2%2Fbld-spring-boot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frife2%2Fbld-spring-boot/lists"}