{"id":29686919,"url":"https://github.com/graceframework/grace-gradle-plugin","last_synced_at":"2025-07-23T04:06:37.056Z","repository":{"id":227910617,"uuid":"726447869","full_name":"graceframework/grace-gradle-plugin","owner":"graceframework","description":null,"archived":false,"fork":false,"pushed_at":"2023-12-02T12:41:02.000Z","size":741,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"2020.0.x","last_synced_at":"2024-03-15T19:14:45.992Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/graceframework.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}},"created_at":"2023-12-02T12:34:00.000Z","updated_at":"2024-03-15T19:15:09.144Z","dependencies_parsed_at":"2024-03-15T19:15:00.140Z","dependency_job_id":"9dee5ba9-07b6-456e-8ad3-c7ace7f64905","html_url":"https://github.com/graceframework/grace-gradle-plugin","commit_stats":null,"previous_names":["graceframework/grace-gradle-plugin"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/graceframework/grace-gradle-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graceframework%2Fgrace-gradle-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graceframework%2Fgrace-gradle-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graceframework%2Fgrace-gradle-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graceframework%2Fgrace-gradle-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/graceframework","download_url":"https://codeload.github.com/graceframework/grace-gradle-plugin/tar.gz/refs/heads/2020.0.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/graceframework%2Fgrace-gradle-plugin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266614482,"owners_count":23956383,"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","status":"online","status_checked_at":"2025-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2025-07-23T04:06:34.693Z","updated_at":"2025-07-23T04:06:37.041Z","avatar_url":"https://github.com/graceframework.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"Grails Gradle Plugins\n========\n\nLatest API Docs: https://grails.github.io/grails-gradle-plugin/latest/api/\n\nBelow are the plugins that are provided by the grails-gradle-plugin dependency.\n\n```\nbuildscript {\n\tdependencies {\n\t\tclasspath \"org.grails:grails-gradle-plugin:$grailsVersion\"\n\t}\n}\n```\n\ngrails-core\n---------\n_Todo_: Add the docs\n\ngrails-doc\n---------\n_Todo_: Add the docs\n\ngrails-gsp\n---------\n* Configure GSP Compiling Task\n\ngrails-plugin-publish\n---------\n_Todo_: Add the docs\n\ngrails-plugin\n---------\n* Configure Ast Sources\n* Configure Project Name And Version AST Metadata\n* Configure Plugin Resources\n* Configure Plugin Jar Task\n* Configure Sources Jar Task\n\ngrails-profile\n---------\n_Todo_: Add the docs\n\ngrails-web\n---------\n* Adds web specific extensions\n\n\nTypical Project Type Gradle Plugin Includes\n========\nBelow are typical Gradle plugin applies that certain types of projects should expect.  These should be automatically added of you when using `grails create-app` and `grails create-plugin` commands.  However, if you wish to enhance or change the scope of your plugin or project you may have to change (add or remove) a grails gradle plugin.\n\nCreate App\n----\n\n\u003ch4\u003eGrails Web Project\u003c/h4\u003e\n-----\nA project created with a typical `grails create-app --profile=web`\n\n```\napply plugin: \"org.grails.grails-web\"\napply plugin: \"org.grails.grails-gsp\"\n```\n\n\u003ch4\u003eGrails Web API Project\u003c/h4\u003e\n----\nA project created with a typical `grails create-app --profile=web-api`\n\n```\napply plugin: \"org.grails.grails-web\"\n```\n\n\u003ch4\u003eGrails Web Micro Project\u003c/h4\u003e\n\nA project created with a typical `grails create-app --profile=web-micro`\n\nThere is no plugins used here as this project type creates a stand alone runnable groovy application and no `build.gradle` file.\n\n\nCreate Plugin\n---\n\n\u003ch4\u003eGrails Plugin Web Project\u003c/h4\u003e\nA project created with a typical `grails create-plugin --profile=web-plugin`\n\n```\napply plugin: \"org.grails.grails-plugin\"\napply plugin: \"org.grails.grails-gsp\"\n```\n\n\u003ch4\u003eGrails Plugin Web API Project\u003c/h4\u003e\nA project created with a typical `grails create-plugin --profile=web-api`. _Note: No org.grails.grails-plugin include_\n\n```\napply plugin: \"org.grails.grails-web\"\n```\n\n\n\u003ch4\u003eGrails Plugin Web Plugin Project\u003c/h4\u003e\nA project created with a typical `grails create-plugin --profile=plugin`.\n\n```\napply plugin: \"org.grails.grails-plugin\"\n```\n\n\u003ch4\u003eGrails Plugin Web Micro Project\u003c/h4\u003e\n\nA project created with a typical `grails create-plugin --profile=web-micro`\n\nThere is no plugins used here as this project type creates a stand alone runnable groovy application and no `build.gradle`` file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgraceframework%2Fgrace-gradle-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgraceframework%2Fgrace-gradle-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgraceframework%2Fgrace-gradle-plugin/lists"}