https://github.com/carmjos/githubreleases4j
GitHub Releases for Java , based on GitHub RESTful API .
https://github.com/carmjos/githubreleases4j
github-api github-release github-rest-api java java-library releases
Last synced: 8 days ago
JSON representation
GitHub Releases for Java , based on GitHub RESTful API .
- Host: GitHub
- URL: https://github.com/carmjos/githubreleases4j
- Owner: CarmJos
- License: mit
- Created: 2022-01-21T18:13:55.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-04-18T02:55:41.000Z (about 1 month ago)
- Last Synced: 2025-04-18T15:33:09.354Z (about 1 month ago)
- Topics: github-api, github-release, github-rest-api, java, java-library, releases
- Language: Java
- Homepage: https://CarmJos.github.io/GithubReleases4J
- Size: 353 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
```text
_____ _ _ _ _ _____ _ _ _ _
/ ____(_) | | | | | | __ \ | | | || | | |
| | __ _| |_| |__ _ _| |__ | |__) |___| | ___ __ _ ___ ___ ___| || |_ | |
| | |_ | | __| '_ \| | | | '_ \| _ // _ \ |/ _ \/ _` / __|/ _ \/ __|__ _| | |
| |__| | | |_| | | | |_| | |_) | | \ \ __/ | __/ (_| \__ \ __/\__ \ | || |__| |
\_____|_|\__|_| |_|\__,_|_.__/|_| \_\___|_|\___|\__,_|___/\___||___/ |_| \____/
```README LANGUAGES [ [**ENGLISH**](README.md) | [中文](README_zh_CN.md) ]
# GithubReleases4J
[](https://github.com/CarmJos/GithubReleases4J/releases)
[](https://opensource.org/licenses/GPL-3.0)
[](https://github.com/CarmJos/GithubReleases4J/actions/workflows/maven.yml)

GitHub Releases for Java , based on [GitHub REST API](https://docs.github.com/cn/rest/reference/releases) .
To provide an easy way to fetch updates and download assets.
## Functions
- Release Info
- Tag Name
- Release Name
- Release Descriptions
- ...
- Release's Author Info
- Login ID
- AvatarURL
- ...
- Release's Assets Info
- Name
- Size
- ...
- Release's Assets Download
- Update check methods. (See demo)## Dependency Usage
Maven dependency
```xml
maven
Maven Central
https://repo1.maven.org/maven2
GithubReleases4J
GitHub Packages
https://maven.pkg.github.com/CarmJos/GithubReleases4J
cc.carm.lib
githubreleases4j
[LATEST RELEASE]
compile
```
Gradle dependency
```groovy
repositories {
mavenCentral() // Using central repository.
// Using github packages.
maven { url 'https://maven.pkg.github.com/CarmJos/GithubReleases4J' }
}dependencies {
api "cc.carm.lib:githubreleases4j:[LATEST RELEASE]"
}
```## DEMO Code
Please [click here](src/test/java/GithubDemo.java) to read the demo codes.
## Open Source License.
The project using [The MIT License](https://opensource.org/licenses/MIT) .