https://github.com/rsksmart/reproducible-builds
Reproducible builds of RSKj's dependencies
https://github.com/rsksmart/reproducible-builds
blockchain reproducible-builds rsk security smart-contracts
Last synced: 6 months ago
JSON representation
Reproducible builds of RSKj's dependencies
- Host: GitHub
- URL: https://github.com/rsksmart/reproducible-builds
- Owner: rsksmart
- Created: 2018-07-16T19:58:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-12T17:30:28.000Z (over 1 year ago)
- Last Synced: 2025-03-12T18:34:31.358Z (over 1 year ago)
- Topics: blockchain, reproducible-builds, rsk, security, smart-contracts
- Language: Dockerfile
- Homepage: https://www.rsk.co/
- Size: 199 KB
- Stars: 3
- Watchers: 27
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RSK Reproducible Builds
This repository is an effort to create reproducible builds of [RSKj's][1] dependencies.
## Why
RSKj is an open-source project, and as most projects it depends on other open-source components.
Current Java tools such as Maven or Gradle only provide basic reproducibility support, and it is not enabled by default.
Most of our dependencies don't implement it, and we can't independently verify the path from source code to binary code on public repositories.
RSK will work on building and publishing reproducible versions on of these libraries.
For more details visit the [Reproducible Builds][2] website.
## Maven Repository
You can find the builds in our public Maven repository at `https://deps.rsklabs.io`.
If you are using Gradle:
```gradle
repositories {
maven {
url "https://deps.rsklabs.io"
}
}
```
[1]: https://github.com/rsksmart/rskj
[2]: https://reproducible-builds.org