Fix flaky test
1 file changed
tree: 6f656338ae4749220129cbe4bd434b983f3b280d
  1. .idea/
  2. bytes/
  3. concurrent/
  4. concurrent-coroutines/
  5. config/
  6. crypto/
  7. devp2p/
  8. dist/
  9. dns-discovery/
  10. eth/
  11. eth-reference-tests/
  12. eth-repository/
  13. ethstats/
  14. gossip/
  15. gradle/
  16. hobbits/
  17. hobbits-relayer/
  18. io/
  19. junit/
  20. kademlia/
  21. kv/
  22. les/
  23. merkle-trie/
  24. net/
  25. net-coroutines/
  26. plumtree/
  27. progpow/
  28. rlp/
  29. rlpx/
  30. scuttlebutt/
  31. scuttlebutt-client-lib/
  32. scuttlebutt-discovery/
  33. scuttlebutt-handshake/
  34. scuttlebutt-rpc/
  35. ssz/
  36. toml/
  37. units/
  38. .editorconfig
  39. .gitattributes
  40. .gitignore
  41. .gitmodules
  42. build.gradle
  43. CONTRIBUTING.md
  44. dependency-versions.gradle
  45. DISCLAIMER
  46. gradle.properties
  47. Jenkinsfile
  48. KEYS
  49. LICENSE
  50. NOTICE
  51. PACKAGES.md
  52. README.md
  53. RELEASE.md
  54. settings.gradle
  55. wrapper.gradle
README.md

Tuweni: Apache Core Libraries for Java (& Kotlin)

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

You need to have Gradle and Java installed.

Tuweni requires Gradle 5.0 or higher.

Java 8 should be used for building in order to support both Java 8 and Java 11 at runtime.

Clone along with submodules

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

First bootstrap and download the wrapper

gradle setup

This downloads gradle and installs helper scripts for the project under ./gradlew and ./gradlew.bat.

Build the project

./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.