{"id":14987907,"url":"https://github.com/apache/groovy-website","last_synced_at":"2025-04-05T20:08:55.282Z","repository":{"id":37747185,"uuid":"158448038","full_name":"apache/groovy-website","owner":"apache","description":"Apache Groovy content to generate sites","archived":false,"fork":false,"pushed_at":"2025-03-19T04:40:58.000Z","size":116094,"stargazers_count":37,"open_issues_count":5,"forks_count":65,"subscribers_count":8,"default_branch":"asf-site","last_synced_at":"2025-03-29T19:07:08.119Z","etag":null,"topics":["groovy","java","library"],"latest_commit_sha":null,"homepage":"","language":"Groovy","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/apache.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}},"created_at":"2018-11-20T20:35:23.000Z","updated_at":"2025-03-19T04:41:02.000Z","dependencies_parsed_at":"2024-04-24T14:02:32.659Z","dependency_job_id":"18985dec-6203-41c3-8540-2383dbd395de","html_url":"https://github.com/apache/groovy-website","commit_stats":{"total_commits":666,"total_committers":24,"mean_commits":27.75,"dds":0.09459459459459463,"last_synced_commit":"584866ea5e040d68930bb0cd1255a7e28948c70c"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgroovy-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgroovy-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgroovy-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fgroovy-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/groovy-website/tar.gz/refs/heads/asf-site","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247393570,"owners_count":20931813,"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":["groovy","java","library"],"created_at":"2024-09-24T14:15:41.092Z","updated_at":"2025-04-05T20:08:50.273Z","avatar_url":"https://github.com/apache.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"//////////////////////////////////////////\n\n  Licensed to the Apache Software Foundation (ASF) under one\n  or more contributor license agreements.  See the NOTICE file\n  distributed with this work for additional information\n  regarding copyright ownership.  The ASF licenses this file\n  to you under the Apache License, Version 2.0 (the\n  \"License\"); you may not use this file except in compliance\n  with the License.  You may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\n  Unless required by applicable law or agreed to in writing,\n  software distributed under the License is distributed on an\n  \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n  KIND, either express or implied.  See the License for the\n  specific language governing permissions and limitations\n  under the License.\n\n//////////////////////////////////////////\n\n= Groovy website\nThe Groovy development team\n:revdate: 2022-04-02\n:build-icon: https://ci-builds.apache.org/job/Groovy/job/Groovy%20dev%20website/badge/icon?subject=dev%20website\n:noheader:\n:groovy-www: https://groovy-lang.org/\n:groovy-ci: https://ci-builds.apache.org/job/Groovy/job/Groovy%20dev%20website/\n:gradle: https://www.gradle.org\n:markupte: https://groovy-lang.org/templating.html#_the_markuptemplateengine\n\n[.left.text-left]\nimage::https://groovy-lang.org/img/groovy-logo.png[]\n{groovy-www}[Groovy] is a multi-faceted language for the Java Virtual Machine. It builds\nupon the strengths of Java, but has additional power features inspired by languages like\nPython, Ruby and Smalltalk.\n\nGroovy makes modern programming features available to Java developers with almost-zero\nlearning curve as well as supports Domain-Specific Languages and other compact syntax\nso your code becomes easy to read and maintain.\n\nGroovy makes writing shell and build scripts easy with its powerful processing primitives,\nOO abilities and an Ant DSL.\n\nIt also increases developer productivity by reducing scaffolding code when developing web,\nGUI, database or console applications. Groovy simplifies testing by supporting unit testing\nand mocking out-of-the-box. Groovy also seamlessly integrates with all existing Java classes\nand libraries and compiles straight to Java bytecode so you can use it anywhere you can use Java.\n\n== Sources for the Groovy website\n\nThis project builds two Groovy websites:\n\n* The _user_ website contains information for users of the Apache Groovy programming language\n* The _developer_ website contains information for those interested in contributing to the language development\n\nThe websites are static once generated. The generation process uses {gradle}[Gradle] and Groovy's templating\ncapabilities to generate the sites.\n\n== Generating the user site\n\n----\ngit clone https://github.com/apache/groovy-website\ncd groovy-website\n./gradlew :site-user:webzip\n----\n\nThe output can be found in the `site-user/build` directory:\n\n----\nsite-user/build\n  |---- site            : the generated static website\n  |---- reports         : deadlinks report\n  |---- distributions   : zip of the website\n----\n\nThe user site is published as part of the release process.\n\n== Generating the developer site\n\n----\ngit clone https://github.com/apache/groovy-website\ncd groovy-website\n./gradlew :site-dev:webzip\n----\n\nThe output can be found in the `site-dev/build` directory:\n\n----\nsite-dev/build\n  |---- site            : the generated static website\n  |---- reports         : deadlinks report\n  |---- distributions   : zip of the website\n----\n\nThe dev site is published continuously from the _asf-site_ branch.\nThe CI server runs {groovy-ci}[here] (Groovy committers can login\nwith Apache credentials and trigger manually if needed).\nStatus: image:{build-icon}[build status, link={groovy-ci}]\n\nWARNING: The website is continuously updated from the _asf-site_ branch.\nThis means that *every merge on that branch is immediately published*.\nChanges that need to be applied on a specific date need to be done on a dedicated branch.\n\n== Contributing\n\nThe website is generated thanks to Gradle and makes use of the {markupte}[Markup Template Engine].\nThe structure of the project consists of these modules/directories:\n\n----\ngenerator                       : module for utility classes and model for generating the website\nsite                            : directory with shared website content\nsite-user                       : module which describes which content appears in the user site\nsite-dev                        : module which describes which content appears in the developer site\n----\n\nThe `site` subproject consists of:\n\n----\nsrc/main/site                   : sources for the static website\n          |--- assets           : static resources such as images, CSS files, ...\n          |--- html             : elements that templates include as raw HTML contents\n          |--- includes         : includes used by templates\n          |--- layouts          : layouts for the various pages\n          |--- pages            : individual pages\n----\n\nThe `site-user` subproject consists of:\n\n----\nbuild.gradle                    : website weaving logic for user site\n----\n\nThe `site-dev` subproject consists of:\n\n----\nbuild.gradle                    : website weaving logic for dev site\n----\n\nAdditional details (a little dated but mostly relevant) can be found in\nthis https://melix.github.io/blog/2014/07/new-groovy-website.html[blog post].\n\n== License\n\nGroovy is licensed under the terms of the\nhttps://www.apache.org/licenses/LICENSE-2.0.html[Apache License, Version 2.0]\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fgroovy-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fgroovy-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fgroovy-website/lists"}