This is an automated email from the ASF dual-hosted git repository. jrhea pushed a commit to branch jrhea-patch-1 in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git
commit beba7fe0bf840cc895e9014c892376d525825e99 Author: Jonny Rhea <[email protected]> AuthorDate: Tue Apr 16 16:38:35 2019 -0500 Update README.md Changed obvious stuff to tuweni from cava. i left things like: -links to online documentation, Stack-Overflow, bintray, etc alone --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index fdf8286..3251d49 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,33 @@ -# Cava: ConsenSys Core Libraries for Java (& Kotlin) +# Tuweni: ConsenSys Core Libraries for Java (& Kotlin) [](https://circleci.com/gh/ConsenSys/cava) [](https://github.com/ConsenSys/cava/blob/master/LICENSE) [ ](https://bintray.com/consensys/consensys/cava/0.6.0) -In the spirit of [Google Guava](https://github.com/google/guava/), Cava is a set of libraries and other tools to aid development of blockchain and other decentralized software in Java and other JVM languages. +In the spirit of [Google Guava](https://github.com/google/guava/), 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](https://github.com/ethereum/wiki/wiki/RLP)), various cryptography functions and primatives, and lots of other helpful utilities. -Cava is developed for JDK 1.8 or higher, and depends on various other FOSS libraries, including Guava. +Tuweni is developed for JDK 1.8 or higher, and depends on various other FOSS libraries, including Guava. -## Getting cava +## Getting tuweni > Note that these libraries are experimental and are subject to change. The libraries are published to [ConsenSys bintray repository](https://consensys.bintray.com/consensys/), synced to JCenter and Maven Central. -You can import all modules using the cava jar. +You can import all modules using the tuweni jar. With Maven: ```xml <dependency> <groupId>org.apache.tuweni</groupId> - <artifactId>cava</artifactId> + <artifactId>tuweni</artifactId> <version>0.6.0</version> </dependency> ``` -With Gradle: `compile 'org.apache.tuweni:cava:0.6.0'` +With Gradle: `compile 'org.apache.tuweni:tuweni:0.6.0'` [PACKAGES.md](PACKAGES.md) contains the list of modules and instructions to import them separately. @@ -36,8 +36,8 @@ With Gradle: `compile 'org.apache.tuweni:cava:0.6.0'` To build, clone this repo and run with `./gradlew` like so: ```sh -git clone --recursive https://github.com/ConsenSys/cava -cd cava +git clone --recursive https://github.com/apache/incubator-tuweni +cd incubator-tuweni ./gradlew ``` @@ -45,9 +45,9 @@ After a successful build, libraries will be available in `build/libs`. ## Links -- [GitHub project](https://github.com/ConsenSys/cava) +- [GitHub project](https://github.com/apache/incubator-tuweni) - [Online Kotlin documentation](https://consensys.github.io/cava/docs/kotlin/0.6.0/cava) - [Online Java documentation](https://consensys.github.io/cava/docs/java/0.6.0) -- [Issue tracker: Report a defect or feature request](https://github.com/ConsenSys/cava/issues/new) +- [Issue tracker: Report a defect or feature request](https://github.com/apache/incubator-tuweni/issues/new) - [StackOverflow: Ask "how-to" and "why-didn't-it-work" questions](https://stackoverflow.com/questions/ask?tags=cava+java) - [cava-discuss: For open-ended questions and discussion](http://groups.google.com/group/cava-discuss) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
