{"id":15180678,"url":"https://github.com/acanda/spring-banner-plugin","last_synced_at":"2025-10-26T20:32:31.986Z","repository":{"id":6082772,"uuid":"54744886","full_name":"acanda/spring-banner-plugin","owner":"acanda","description":"A Maven plugin that generates the banner for a Spring Boot Application","archived":false,"fork":false,"pushed_at":"2024-09-27T16:00:31.000Z","size":168,"stargazers_count":19,"open_issues_count":5,"forks_count":6,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-09-28T16:41:53.198Z","etag":null,"topics":["banner","figlet","hacktoberfest","maven-plugin","spring-boot","springboot"],"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/acanda.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":null,"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}},"created_at":"2016-03-25T20:09:59.000Z","updated_at":"2024-09-16T08:34:06.000Z","dependencies_parsed_at":"2023-11-17T09:51:55.054Z","dependency_job_id":"7303b6db-8c48-475f-be61-72d5ae5f0dea","html_url":"https://github.com/acanda/spring-banner-plugin","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acanda%2Fspring-banner-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acanda%2Fspring-banner-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acanda%2Fspring-banner-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/acanda%2Fspring-banner-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/acanda","download_url":"https://codeload.github.com/acanda/spring-banner-plugin/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219862132,"owners_count":16555959,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["banner","figlet","hacktoberfest","maven-plugin","spring-boot","springboot"],"created_at":"2024-09-27T16:41:52.471Z","updated_at":"2025-10-26T20:32:26.705Z","avatar_url":"https://github.com/acanda.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Spring Banner Plugin\n:plugin-version: 1.6.0\n:idprefix:\n:idseparator: -\n\nThe Spring Banner Plugin is a Maven plugin generating the banner that is printed on start up of a Spring Boot application.\n\n[source,subs=\"attributes+\"]\n----\n ____             _             ____\n/ ___| _ __  _ __(_)_ __   __ _| __ )  __ _ _ __  _ __   ___ _ __\n\\___ \\| '_ \\| '__| | '_ \\ / _` |  _ \\ / _` | '_ \\| '_ \\ / _ \\ '__|\n ___) | |_) | |  | | | | | (_| | |_) | (_| | | | | | | |  __/ |\n|____/| .__/|_|  |_|_| |_|\\__, |____/ \\__,_|_| |_|_| |_|\\___|_|\n      |_|                 |___/\nVersion: {plugin-version}, Server: localhost:8080, Active Profiles: none\n----\n\n== Usage\n\nimage::https://maven-badges.herokuapp.com/maven-central/ch.acanda.maven/spring-banner-plugin/badge.svg[\"Maven Central\",link=\"https://search.maven.org/artifact/ch.acanda.maven/spring-banner-plugin\"]\n\n[source,xml,subs=\"attributes+\"]\n----\n\u003cbuild\u003e\n    \u003cplugins\u003e\n        \u003cplugin\u003e\n            \u003cgroupId\u003ech.acanda.maven\u003c/groupId\u003e\n            \u003cartifactId\u003espring-banner-plugin\u003c/artifactId\u003e\n            \u003cversion\u003e{plugin-version}\u003c/version\u003e\n            \u003cexecutions\u003e\n                \u003cexecution\u003e\n                    \u003cid\u003egenerate-spring-banner\u003c/id\u003e\n                    \u003cphase\u003egenerate-resources\u003c/phase\u003e \u003c!--1--\u003e\n                    \u003cgoals\u003e\n                        \u003cgoal\u003egenerate\u003c/goal\u003e\n                    \u003c/goals\u003e\n                \u003c/execution\u003e\n            \u003c/executions\u003e\n            \u003cconfiguration\u003e \u003c!--2--\u003e\n                \u003ctext\u003e${project.name}\u003c/text\u003e\n                \u003coutputDirectory\u003e${project.build.outputDirectory}\u003c/outputDirectory\u003e\n                \u003cfilename\u003ebanner.txt\u003c/filename\u003e\n                \u003cincludeInfo\u003etrue\u003c/includeInfo\u003e\n                \u003cinfo\u003eVersion: ${application.version:${project.version}}, Server: ${server.address:localhost}:${server.port:8080}, Active Profiles: ${spring.profiles.active:none}\u003c/info\u003e\n                \u003cfont\u003estandard\u003c/font\u003e\n                \u003ccolor\u003edefault\u003c/color\u003e\n                \u003cuseNonBreakingSpace\u003efalse\u003c/useNonBreakingSpace\u003e\n            \u003c/configuration\u003e\n        \u003c/plugin\u003e\n    \u003c/plugins\u003e\n\u003c/build\u003e\n----\n\n\u003c1\u003e The default phase is `generate-resources`. This can be omitted unless you want to generate the banner in another phase.\n\u003c2\u003e All configuration parameters are optional. The values in this example are the default values.\n\n=== Configuration Parameters\n\nAll parameters are optional.\n\ntext::\nThe banner text. +\nDefault value: `${project.name}` +\nProperty: `banner.text`\n\noutputDirectory::\nThe directory of the banner file. +\nDefault value: `${project.build.outputDirectory}` +\nProperty: `banner.outputDirectory`\n\nfilename::\nThe name of the banner file. +\nDefault value: `banner.txt` +\nProperty: `banner.filename`\n\nincludeInfo::\n`true` (default): include the info line +\n`false`: do not include the info line +\nProperty: `banner.includeInfo`\n\ninfo::\nThe line to print under the banner when `includeInfo` is `true`. +\nDefault value: `Version: ${application.version:${project.version}}, Server: ${server.address:localhost}:${server.port:8080}, Active Profiles: ${spring.profiles.active:none}` +\nProperty: `banner.info`\n\nfont::\nThe FIGlet font to be used for the banner. This can either be the name of a built-in font, or a path to a custom FIGlet\nfont file (.flf). +\nAvailable built-in fonts: `banner`, `big`, `block`, `bubble`, `digital`, `ivrit`, `lean`, `mini`, `mnemonic`, `script`,\n`shadow`, `slant`, `small`, `smscript`, `smshadow`, `smslant`, `standard`, `term`. +\nCustom fonts must be prefixed with `file:` and should be referenced using the full path, e.g.\n`\u003cfont\u003efile:${project.basedir}/fonts/chunky.flf\u003c/font\u003e`.\nRelative paths are relative to the working directory. The font file is only needed during compile time and does not need\nto be included in the final jar. +\nDefault value: `standard` +\nProperty: `banner.font`\n\ncolor::\nThe color of the banner. Valid values are: `default`, `black`, `red`, `green`,\n`yellow`, `blue`, `magenta`, `cyan`, `white`, `bright black`, `bright red`,\n`bright green`, `bright yellow`, `bright blue`, `bright magenta`, `bright cyan`\nand `bright white`. +\nDefault value: `default` +\nProperty: `banner.color`\n\nuseNonBreakingSpace::\nIf set to `true`, then all spaces are replaced with non-breaking spaces. +\nDefaultValue: `false` +\nProperty: `banner.useNonBreakingSpace`\n\n== Requirements\n\nYou need to run Maven with Java 17 to use the plugin.\n\n== Build Status\n\nimage:https://github.com/acanda/spring-banner-plugin/actions/workflows/build.yaml/badge.svg[\"GitHub Actions Build Status\",link=\"https://github.com/acanda/spring-banner-plugin/actions/workflows/build.yaml\"]\nimage:https://coveralls.io/repos/github/acanda/spring-banner-plugin/badge.svg?branch=main[\"Coverage Status\",link=\"https://coveralls.io/github/acanda/spring-banner-plugin?branch=main\"]\nimage:https://sonarcloud.io/api/project_badges/measure?project=acanda_spring-banner-plugin\u0026metric=alert_status[\"Sonar Quality Gate Status\",link=\"https://sonarcloud.io/dashboard?id=acanda_spring-banner-plugin\"]\nimage:https://sonarcloud.io/api/project_badges/measure?project=acanda_spring-banner-plugin\u0026metric=security_rating[\"Sonar Security Rating\",link=\"https://sonarcloud.io/component_measures?id=acanda_spring-banner-plugin\u0026metric=Security\u0026view=list\"]\nimage:https://sonarcloud.io/api/project_badges/measure?project=acanda_spring-banner-plugin\u0026metric=reliability_rating[\"Sonar Reliability Rating\",link=\"https://sonarcloud.io/component_measures?id=acanda_spring-banner-plugin\u0026metric=Reliability\u0026view=list\"]\nimage:https://sonarcloud.io/api/project_badges/measure?project=acanda_spring-banner-plugin\u0026metric=sqale_rating[\"Sonar Maintainability Rating\",link=\"https://sonarcloud.io/component_measures?id=acanda_spring-banner-plugin\u0026metric=Maintainability\u0026view=list\"]\nimage:https://sonarcloud.io/api/project_badges/measure?project=acanda_spring-banner-plugin\u0026metric=vulnerabilities[\"Sonar Vulnerabilites\",link=\"https://sonarcloud.io/project/issues?id=acanda_spring-banner-plugin\u0026resolved=false\u0026types=VULNERABILITY\"]\nimage:https://sonarcloud.io/api/project_badges/measure?project=acanda_spring-banner-plugin\u0026metric=bugs[\"Sonar Bugs\",link=\"https://sonarcloud.io/project/issues?id=acanda_spring-banner-plugin\u0026resolved=false\u0026types=BUG\"]\n\n== License\n\nThe Spring Banner Plugin is licensed under the http://www.apache.org/licenses/LICENSE-2.0[Apache License, Version 2.0].\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facanda%2Fspring-banner-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Facanda%2Fspring-banner-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Facanda%2Fspring-banner-plugin/lists"}