An open API service indexing awesome lists of open source software.

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

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