{"id":15023997,"url":"https://github.com/sap/commerce-gradle-plugin","last_synced_at":"2025-10-19T18:31:07.805Z","repository":{"id":37862646,"uuid":"138153541","full_name":"SAP/commerce-gradle-plugin","owner":"SAP","description":"Gradle plugins for the full development lifecycle of a SAP Commerce project","archived":false,"fork":false,"pushed_at":"2025-10-13T14:59:54.000Z","size":2415,"stargazers_count":35,"open_issues_count":7,"forks_count":15,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-10-19T15:55:58.191Z","etag":null,"topics":["automation","commerce","commerce-cloud","gradle-plugin","hcs","hybris","hybris-commerce-suite","sap","sap-commerce","sap-hybris"],"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/SAP.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2018-06-21T10:06:56.000Z","updated_at":"2025-09-19T08:11:13.000Z","dependencies_parsed_at":"2025-03-12T13:24:25.385Z","dependency_job_id":"05050d93-c0be-489e-9596-3e13beba7f35","html_url":"https://github.com/SAP/commerce-gradle-plugin","commit_stats":null,"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"purl":"pkg:github/SAP/commerce-gradle-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fcommerce-gradle-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fcommerce-gradle-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fcommerce-gradle-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fcommerce-gradle-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SAP","download_url":"https://codeload.github.com/SAP/commerce-gradle-plugin/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SAP%2Fcommerce-gradle-plugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279873369,"owners_count":26237966,"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-10-19T02:00:07.647Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["automation","commerce","commerce-cloud","gradle-plugin","hcs","hybris","hybris-commerce-suite","sap","sap-commerce","sap-hybris"],"created_at":"2024-09-24T19:59:41.461Z","updated_at":"2025-10-19T18:31:07.798Z","avatar_url":"https://github.com/SAP.png","language":"Java","readme":"# SAP Commerce Gradle Plugins 4.1.0\n\n[![Actions Status](https://github.com/SAP/commerce-gradle-plugin/workflows/Gradle%20CI/badge.svg)](https://github.com/SAP/commerce-gradle-plugin/actions)\n[![REUSE status](https://api.reuse.software/badge/github.com/SAP/commerce-gradle-plugin)](https://api.reuse.software/info/github.com/SAP/commerce-gradle-plugin)\n\nBootstrap, configure and build your SAP Commerce (Hybris) project using Gradle 5+.\n\n\u003e [!TIP]\n\u003e **For the user documentation, please check the [`/docs` folder](/docs)**\n\nThe plugins are published to https://plugins.gradle.org/.\n\n| Published Plugin                  | Documentation              | Description                                                                                                         |\n| --------------------------------- | -------------------------- | ------------------------------------------------------------------------------------------------------------------- |\n| [`sap.commerce.build`][build]     | [Documentation][build-doc] | Automates the developer setup and allows you to interact with the platform build using Gradle                       |\n| [`sap.commerce.build.ccv2`][ccv2] | [Documentation][ccv2-doc]  | Use `manifest.json` to configure and build your \"SAP Commerce Cloud in the Public Cloud\" (aka CCv2) project locally |\n\nThis project uses [Semantic Versioning 2.0.0](https://semver.org/spec/v2.0.0.html)\n\n## Getting Started\n\nHere is how you get started with the plugins for your SAP Commerce project.\n\n### Prerequisites\n\n[Install Gradle](https://gradle.org/install/), in case you haven't yet.\n\n### Examples\n\n**Minimal Setup for CCv2 Manifest Validation**\n\n1. ```cd \u003cproject\u003e/core-customize```\n2. (optional, but highly recommended) Initialize the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html)\n\n   ```shell\n   gradle wrapper\n   ```\n3. Add a minimal Gradle build script:\\\n   `build.gradle.kts`\n\n    ```kotlin\n    plugins {\n        id(\"sap.commerce.build.ccv2\") version(\"4.1.0\")\n    }\n    ```\n\n4. `./gradlew validateManifest`\n\n**Development Setup**\n\n*For a fully automated, best-practice CCv2 project setup, refer to [sap-commerce-tools/ccv2-project-template](https://github.com/sap-commerce-tools/ccv2-project-template)*\n\n1. ```cd \u003cproject\u003e/core-customize```\n2. (optional, but highly recommended) Initialize the [Gradle Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html)\n\n   ```shell\n   gradle wrapper\n   ```\n3. Add Gradle build script \\\n   ```build.gradle.kts```\n\n   ```kotlin\n   plugins {\n      id(\"sap.commerce.build\") version(\"4.1.0\")\n      id(\"sap.commerce.build.ccv2\") version(\"4.1.0\")\n   }\n\n   repositories {\n     //Please refer to the official Gradle documentation and the plugin documentation for additional\n     // information about dependency resolution.\n\n     // Option 1: Use a (custom) Maven repository to provide SAP Commerce artifacts for development\n     maven {\n        url = uri(\"https://custom.repo.com/maven\")\n     }\n     // Option 2: Download all required files manually and put them in `dependencies` folder\n     // There are ways to automate the downloads from launchpad.support.sap.com, please check the FAQ.\n     // Make sure to rename the files accordingly (\u003cartifactId\u003e-\u003cversion\u003e.zip)\n     flatDir { dirs(\"dependencies\") }\n\n     mavenCentral()\n   }\n   ```\n4. Enjoy things like:\n\n   - `./gradlew bootstrapPlatform` - download (if you use Maven) and set up the correct SAP Commerce zip, extension packs, cloud extension packs, ..., as defined in `manifest.json`\n   - `./gradlew installManifestAddons` - install all addons as defined in `manifest.json`\n   - `./gradlew yclean yall` - run `ant clean all` using Gradle. You can run any Ant target provided by SAP Commerce as `y\u003ctarget\u003e`.\n   - `./gradlew validateManifest`- validate your manifest for common errors. Now with additional checks because\n     the full platform is available.\n   - `./gradlew cloudTests cloudWebTests`- run the tests defined in `manifest.json`\n\n\nDon't forget to commit the Gradle Wrapper and your build script.\n\n## Support\n\nPlease raise an [issue] in this GitHub project, following the guidelines outlined in [CONTRIBUTING.md]\n\n## Contributing\n\nPlease refer to [CONTRIBUTING.md]\n\n[CONTRIBUTING.md]: CONTRIBUTING.md\n[issue]: https://github.com/SAP/commerce-gradle-plugin/issues\n\n[build]: https://plugins.gradle.org/plugin/sap.commerce.build\n[build-doc]: docs/Plugin-sap.commerce.build.md\n[ccv2]: https://plugins.gradle.org/plugin/sap.commerce.build.ccv2\n[ccv2-doc]: docs/Plugin-sap.commerce.build.ccv2.md\n[tools]:https://github.com/sap-commerce-tools\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsap%2Fcommerce-gradle-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsap%2Fcommerce-gradle-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsap%2Fcommerce-gradle-plugin/lists"}