{"id":18389365,"url":"https://github.com/rightpoint/maven-releases","last_synced_at":"2026-02-27T15:07:11.228Z","repository":{"id":24337753,"uuid":"27735313","full_name":"Rightpoint/maven-releases","owner":"Rightpoint","description":null,"archived":false,"fork":false,"pushed_at":"2016-02-19T16:21:26.000Z","size":18029,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":30,"default_branch":"master","last_synced_at":"2025-04-12T08:44:51.507Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Rightpoint.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-12-08T21:09:51.000Z","updated_at":"2016-02-19T16:21:28.000Z","dependencies_parsed_at":"2022-07-21T02:49:11.692Z","dependency_job_id":null,"html_url":"https://github.com/Rightpoint/maven-releases","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Rightpoint/maven-releases","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2Fmaven-releases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2Fmaven-releases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2Fmaven-releases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2Fmaven-releases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rightpoint","download_url":"https://codeload.github.com/Rightpoint/maven-releases/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rightpoint%2Fmaven-releases/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29901254,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-27T14:46:13.553Z","status":"ssl_error","status_checked_at":"2026-02-27T14:46:10.522Z","response_time":57,"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-11-06T01:42:47.503Z","updated_at":"2026-02-27T15:07:11.212Z","avatar_url":"https://github.com/Rightpoint.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"maven-releases\n==============\n\nThis repository contains versions for Android libraries using Maven.\n\n# How to Include In Project\n\n```groovy\n\nsubprojects {\n  repositories {\n        maven { url \"https://raw.github.com/Raizlabs/maven-releases/master/releases\" }\n  }\n}\n\n```\n\nReference the repository from this location using:\n\n```groovy\n\ndependencies {\n  compile \"com.raizlabs.android:{libraryname}:{version}\"\n}\n```\n# Bintray Script Usage\nThe `bintray.gradle` script can be used for easy publishing of libraries to Bintray.\n\n1. Start by including external plugins in your root projects `build.gradle`:\n  ```groovy\n  ...\n  dependencies {\n    classpath 'com.android.tools.build:gradle:1.5.0'\n      ...\n      // Bintray\n      classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'\n      classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'\n  ```\n  (See the version of the `bintray.gradle` that you're using to know which versions to choose)\n  \n2. Next, include the `bintray.gradle` script from your library's `build.gradle` using the raw GitHub url. It is strongly recommended that you leverage tags for versioning or link to direct commits so that commits to this repository will not change your build script version:\n  ```groovy\n  ...\n  dependencies {\n      compile fileTree(dir: 'libs', include: ['*.jar'])\n      testCompile 'junit:junit:4.12'\n      compile 'com.android.support:appcompat-v7:23.1.1'\n  }\n\n  apply from: 'https://raw.githubusercontent.com/Raizlabs/maven-releases/bintrayScriptV2.0/bintray.gradle'\n  ```\n\n3. Setup Gradle properties for your project configuration in your projects `gradle.properties`:\n  ```groovy\n  # The name of the version to be published\n  VERSION_NAME= 0.1.0\n  # The name of the Maven group being published to (groupId)\n  # This is normally your package name minus the library name itself\n  GROUP_NAME= com.raizlabs\n  # The name of the artifact/library being published\n  ARTIFACT_NAME= MyLibrary\n  \n  \n  # The name of the user's organization to publish to\n  BINTRAY_ORGANIZATION= raizlabs\n  # The name of the repository to publish to within the organization\n  BINTRAY_REPOSITORY= Libraries\n  # Whether we should immediately publish to JCenter upon success\n  BINTRAY_PUBLISH= true\n\n  # The licensing information for Maven publishing\n  LICENSE_NAME= The Apache Software License, Version 2.0\n  LICENSE_URL= http://www.apache.org/licenses/LICENSE-2.0.txt\n\n  # The source control and web urls for Maven publication\n  GIT_URL= https://github.com/Raizlabs/MyLibrary.git\n  SITE_URL= https://github.com/Raizlabs/MyLibrary\n```\n\n4. Add your bintray credentials to the `local.properties:\n  ```groovy\n  bintray_user=my-user-name\n  bintray_key=mybintraykey\n  ```\n  \n5. Clean the project, and run the `install` task to build the project and maven artifacts. Then run the `bintrayUpload` task to upload the artifact to Bintray.\n  ```\n  ./gradlew clean install\n  ./gradlew bintrayUpload\n  ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frightpoint%2Fmaven-releases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frightpoint%2Fmaven-releases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frightpoint%2Fmaven-releases/lists"}