{"id":48811001,"url":"https://github.com/jetty/jetty.website","last_synced_at":"2026-04-14T07:06:45.043Z","repository":{"id":208660006,"uuid":"719990405","full_name":"jetty/jetty.website","owner":"jetty","description":"Antora-based jetty.org website.","archived":false,"fork":false,"pushed_at":"2026-04-13T13:46:19.000Z","size":3169,"stargazers_count":1,"open_issues_count":8,"forks_count":12,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-04-13T15:29:57.065Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://jetty.org/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jetty.png","metadata":{"files":{"readme":"README.adoc","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":"2023-11-17T10:41:47.000Z","updated_at":"2026-04-13T13:46:25.000Z","dependencies_parsed_at":"2023-12-12T17:53:36.774Z","dependency_job_id":"b459eb96-7703-4b34-9b0a-cdc58e173cde","html_url":"https://github.com/jetty/jetty.website","commit_stats":null,"previous_names":["webtide/jetty.website","jetty/jetty.website"],"tags_count":46,"template":false,"template_full_name":null,"purl":"pkg:github/jetty/jetty.website","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jetty","download_url":"https://codeload.github.com/jetty/jetty.website/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetty%2Fjetty.website/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31785685,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T02:24:21.117Z","status":"ssl_error","status_checked_at":"2026-04-14T02:24:20.627Z","response_time":153,"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":[],"created_at":"2026-04-14T07:06:18.705Z","updated_at":"2026-04-14T07:06:45.029Z","avatar_url":"https://github.com/jetty.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Eclipse Jetty Website Playbook\n\nThis repository is for the development of the new jetty.org website.\n\nThe staged site is available at the following URL:\n\n* https://jetty.github.io/jetty.website/\n\n== Prerequisites\n\nThe site is built using Antora.\nThis directory contains a Maven project that uses the Antora Maven plugin.\nThis plugin allows you to run Antora through Maven.\nThe only prerequisite is that you have Maven installed on your machine.\n\nYou do not need to have Node.js or npm installed.\nYou also don't need to run `npm install`.\nThe Antora Maven plugin handles all this.\n\n== Usage\n\nTo build the site quickly, use:\n\n $ mvn antora\n\nAntora will print the location of the generated site in the Maven log.\n\nTo ensure everyone is using the same environment, you may want to use the Maven wrapper, `mvnw` to invoke Maven instead:\n\n $ ./mvnw antora\n\nOn the first run, this command will set up Node.js (in [.path]_target/node_) and install the project dependencies (npm packages) (into [.path]_node_modules_).\n\n[NOTE]\n====\nThe previous command is roughly equivalent to the following low-level `npx` command:\n\n $ npx antora --clean --fetch antora-playbook.yml\n\nIn order to use `npx` directly, you must have Node.js preinstalled.\n====\n\nYou can pass options directly to Antora by defining user properties that start with `antora.option.`.\nFor example, you can enable the jetty-downloads extension as follows:\n\n $ mvn antora -Dantora.option.extension[1]=jetty-download\n\nAntora is configured to fetch the remote repositories on each run.\nIf you want to work offline after the first run, you can unset the `fetch` option:\n\n $ mvn antora -Dantora.option.fetch?=false\n\nYou can accomplish the same thing by enabling the `cached` execution profile, which overrides options passed to Antora.\n\n $ mvn antora:antora@cached\n\nTo activate the diagram generator (Kroki), enable the `kroki` execution profile.\n\n $ mvn antora:antora@kroki\n\nIf you want to run the full production build, enable the `full` execution profile.\n\n $ mvn antora:antora@full\n\nThe full production build is equivalent to the following `npm` and `npx` command:\n\n $ npm i --package-lock false\n   ANTORA_CACHE_DIR=$PWD/.cache/antora npx --offline antora --clean --fetch --extension @antora/collector-extension --extension @antora/lunr-extension --extension jetty-downloads --extension register-asciidoctor-kroki --extension ./lib/router-extension.js --log-failure-level warn --stacktrace antora-playbook.yml\n\nThe Maven plugin also prints the `npx` command before running it for informational purposes and to help you debug the configuration.\n\n//To learn more about how to use the Antora Maven plugin, refer to the docs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetty%2Fjetty.website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjetty%2Fjetty.website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetty%2Fjetty.website/lists"}