{"id":23054003,"url":"https://github.com/emcecs/ecs-common-build","last_synced_at":"2026-02-18T05:36:54.967Z","repository":{"id":27493871,"uuid":"30974055","full_name":"EMCECS/ecs-common-build","owner":"EMCECS","description":"Common build scripts for ECS SDKs","archived":false,"fork":false,"pushed_at":"2020-10-28T07:24:47.000Z","size":17,"stargazers_count":1,"open_issues_count":2,"forks_count":2,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-10-13T10:38:19.593Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EMCECS.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":"license.ij.vm","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-18T16:28:28.000Z","updated_at":"2025-05-21T20:42:45.000Z","dependencies_parsed_at":"2022-09-02T09:00:55.301Z","dependency_job_id":null,"html_url":"https://github.com/EMCECS/ecs-common-build","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/EMCECS/ecs-common-build","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMCECS%2Fecs-common-build","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMCECS%2Fecs-common-build/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMCECS%2Fecs-common-build/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMCECS%2Fecs-common-build/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EMCECS","download_url":"https://codeload.github.com/EMCECS/ecs-common-build/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EMCECS%2Fecs-common-build/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29569857,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T04:18:28.490Z","status":"ssl_error","status_checked_at":"2026-02-18T04:13:49.018Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":"2024-12-16T00:32:26.401Z","updated_at":"2026-02-18T05:36:49.948Z","avatar_url":"https://github.com/EMCECS.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"Repository of common build elements for public ECS projects\n===\n\nPublished projects\n---\n\n### build.gradle\n\nYour project's build.gradle file should look like this:\n\n    description 'Description of this project'\n    version '1.0.0'// omit the version to enable automated semantic versioning based on tags\n\n    // if your github project is different than your origin project\n    ext.githubProjectName = 'my-project-java'\n\n    // if your license is different than the default (BSD 3-Clause)\n    ext.licenseName = 'My License Name'\n    ext.licenseUrl = 'http://opensource.org/licenses/My-License'\n\n    buildscript {\n        // set the version of the common build script you will use\n        ext.commonBuildVersion = '1.1'\n        ext.commonBuildDir = \"https://raw.githubusercontent.com/emcvipr/ecs-common-build/v$commonBuildVersion\"\n        apply from: \"$commonBuildDir/ecs-publish.buildscript.gradle\", to: buildscript\n    }\n\n    apply from: \"$commonBuildDir/ecs-publish.gradle\"\n\n    // replace below with your project's actual dependencies\n    dependencies {\n        compile 'com.emc.ecs:smart-client:1.0.0',\n                'com.emc.vipr:vipr-object-transformations:2.0.3',\n                'org.jdom:jdom2:2.0.5'\n        testCompile 'junit:junit:4.11'\n    }\n\n### $HOME/.gradle/gradle.properties\n\nYou should also have a user-level gradle.properties file that contains the following properties:\n\n    # path to Java 6 jre/lib (if installed)\n    java6Lib=\n    \n    # set these if you plan on publishing. note: you will be prompted for passwords if necessary\n    sonatypeUsername=\n    githubUsername=\n    gitUsername=\n    # Located on the signing server. KeyId can be found using gpg --list-keys\n    signingKeyId=\n    signingSecretKeyRingFile=\n\n### CLI tools as sub-projects (1.4+)\n\nYou can now have sub-projects that represent companion tools for the main project. Make sure your main project uses\ncommon-build v1.4 or later and applies ecs-publish.gradle to *allprojects*:\n\n    allprojects {\n        apply from: \"$commonBuildDir/ecs-publish.gradle\"\n    }\n\nThen, add your sub-project to settings.gradle:\n\n    include 'widget-cli'\n    \nand create a build.gradle file in your sub-project directory like so:\n\n    description 'Description of this project'\n    \n    // replace with your actual main class\n    ext.mainClass = 'com.emc.your.main.ClassName'\n    \n    buildscript {\n        apply from: \"$commonBuildDir/ecs-tool.buildscript.gradle\", to: buildscript\n    }\n    \n    apply from: \"$commonBuildDir/ecs-tool.subproject.gradle\"\n    \n    // replace below with your project's actual dependencies\n    dependencies {\n        compile 'commons-cli:commons-cli:1.3.1'\n        testCompile group: 'junit', name: 'junit', version: '4.11'\n    }\n\nAn executable jar will be created for the sub-project and bundled in the root project's distribution under the tools/\ndirectory.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femcecs%2Fecs-common-build","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femcecs%2Fecs-common-build","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femcecs%2Fecs-common-build/lists"}