Ensure dependency report is included in source distribution
4 files changed
tree: e7c8a58ff9fc7e32e1630d5dc225914c24b54b1f
  1. .circleci/
  2. .idea/
  3. bytes/
  4. concurrent/
  5. concurrent-coroutines/
  6. config/
  7. crypto/
  8. devp2p/
  9. dist/
  10. eth/
  11. eth-reference-tests/
  12. eth-repository/
  13. gossip/
  14. gradle/
  15. io/
  16. junit/
  17. kademlia/
  18. kv/
  19. les/
  20. merkle-trie/
  21. net/
  22. net-coroutines/
  23. plumtree/
  24. progpow/
  25. rlp/
  26. rlpx/
  27. scuttlebutt/
  28. scuttlebutt-discovery/
  29. scuttlebutt-handshake/
  30. scuttlebutt-rpc/
  31. ssz/
  32. toml/
  33. units/
  34. .editorconfig
  35. .gitattributes
  36. .gitignore
  37. .gitmodules
  38. .rat-excludes
  39. build.gradle
  40. CONTRIBUTING.md
  41. dependency-versions.gradle
  42. DISCLAIMER
  43. gradle.properties
  44. gradlew
  45. gradlew.bat
  46. KEYS
  47. LICENSE
  48. NOTICE
  49. PACKAGES.md
  50. README.md
  51. RELEASE.md
  52. settings.gradle
README.md

Tuweni: Apache Core Libraries for Java (& Kotlin)

Build Status License Maven Central Sonatype Nexus (Snapshots)

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 1.8 or higher, and depends on various other FOSS libraries, including Guava.

Getting tuweni

The libraries are published to the Apache Nexus Repository, synced to JCenter and Maven Central.

You can import all modules using the tuweni jar.

With Maven:

<dependency>
  <groupId>org.apache.tuweni</groupId>
  <artifactId>tuweni</artifactId>
  <version>1.0.0</version>
</dependency>

With Gradle: compile 'org.apache.tuweni:tuweni:1.0.0'

PACKAGES.md contains the list of modules and instructions to import them separately.

Getting snapshots

We publish a new snapshot on every change of the master branch.

Snapshots are stored under the Apache snapshots repository.

With Maven, add this repository with:

 <repositories>
    <repository>
      <id>apache.snapshots</id>
      <name>Apache Snapshot Repository</name>
      <url>https://repository.apache.org/snapshots</url>
      <releases>
        <enabled>false</enabled>
      </releases>
    </repository>
  </repositories>
<dependency>
  <groupId>org.apache.tuweni</groupId>
  <artifactId>tuweni</artifactId>
  <version>1.1.0-SNAPSHOT</version>
</dependency>

With gradle:

maven { url "https://repository.apache.org/snapshots"}

compile 'org.apache.tuweni:tuweni:1.1.0-SNAPSHOT'

Build Instructions

To build, clone this repo and run with ./gradlew like so:

git clone --recursive https://github.com/apache/incubator-tuweni
cd incubator-tuweni
./gradlew

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.