try signing archives in build (#91)
32 files changed
tree: 66dabb4a6dfbbf3615ccefd453efd19fcc04496a
  1. .github/
  2. .idea/
  3. bytes/
  4. concurrent/
  5. concurrent-coroutines/
  6. config/
  7. crypto/
  8. devp2p/
  9. devp2p-eth/
  10. dist/
  11. dns-discovery/
  12. eth/
  13. eth-client/
  14. eth-reference-tests/
  15. eth-repository/
  16. eth2-reference-tests/
  17. ethstats/
  18. gossip/
  19. gradle/
  20. hobbits/
  21. hobbits-relayer/
  22. io/
  23. junit/
  24. kademlia/
  25. kv/
  26. les/
  27. merkle-trie/
  28. net/
  29. net-coroutines/
  30. plumtree/
  31. progpow/
  32. rlp/
  33. rlpx/
  34. scuttlebutt/
  35. scuttlebutt-client-lib/
  36. scuttlebutt-discovery/
  37. scuttlebutt-handshake/
  38. scuttlebutt-rpc/
  39. ssz/
  40. toml/
  41. units/
  42. .asf.yaml
  43. .editorconfig
  44. .gitattributes
  45. .gitignore
  46. .gitmodules
  47. build.gradle
  48. build.sh
  49. CONTRIBUTING.md
  50. dangerfile.js
  51. dependency-versions.gradle
  52. DISCLAIMER
  53. gradle.properties
  54. Jenkinsfile
  55. KEYS
  56. LICENSE
  57. NOTICE
  58. package-lock.json
  59. PACKAGES.md
  60. README.md
  61. RELEASE.md
  62. settings.gradle
  63. wrapper.gradle
README.md

Tuweni: Apache Core Libraries for Java (& Kotlin)

Slack Github build Build Status License Maven Central Sonatype Nexus (Snapshots)

See our web site for details on the project.

Tuweni is a set of libraries and other tools to aid development of blockchain and other decentralized software in Java and other JVM languages.

It includes a low-level bytes library, serialization and deserialization codecs (e.g. RLP), various cryptography functions and primatives, and lots of other helpful utilities.

Tuweni is developed for JDK 11 or higher.

Build Instructions

Install Docker.

Clone along with submodules

git clone https://github.com/apache/incubator-tuweni.git tuweni
cd tuweni
git submodule update --init --recursive

Build the project

One step build

Requires Docker: ./build.sh

With Gradle and Java

Install Gradle >6 and JDK 11.

Run:

$>gradle setup

It will install the Gradle wrapper with the correct version.

Then build:

$>./gradlew build

After a successful build, libraries will be available in build/libs.

Contributing

Your contributions are very welcome! Here are a few links to help you:

Mailing lists

More information

License

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.