This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new 3103ad617 Update README.md
3103ad617 is described below
commit 3103ad617958e26b50f6a748f4730f1aacd7913d
Author: James Bognar <[email protected]>
AuthorDate: Thu Jun 23 16:58:26 2022 -0400
Update README.md
---
README.md | 38 ++++++++++++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 9f77fa237..53678b4e4 100644
--- a/README.md
+++ b/README.md
@@ -13,6 +13,40 @@
***************************************************************************************************************************
-->
-# Juneau
+# Apache Juneau
-Please visit the [wiki](https://github.com/apache/juneau/wiki) and
[homepage](https://juneau.apache.org/) for information on this project.
+* [Homepage](https://juneau.apache.org/)
+* [Wiki](https://github.com/apache/juneau/wiki)
+* [Javadocs](https://juneau.apache.org/site/apidocs-9.0-B1/index.html)
+*
[Documentation](https://juneau.apache.org/site/apidocs-9.0-B1/overview-summary.html#overview.description)
+
+## Description
+
+Apache Juneau™ is a single cohesive Java ecosystem consisting of the following
parts:
+
+* *juneau-marshall* - A universal toolkit for marshalling POJOs to a
variety of content types using a common framework with no external library
dependencies.
+* *juneau-marshall-rdf* - Additional support for various RDF languages.
+* *juneau-dto* - A variety of predefined DTOs for serializing and parsing
languages such as HTML5, Swagger and ATOM.
+* *juneau-config* - A sophisticated configuration file API.
+* *juneau-rest-server* - A universal REST server API for creating
Swagger-based self-documenting REST interfaces using POJOs, simply deployed as
one or more top-level servlets in any Servlet 3.1.0+ container. Includes Spring
Boot and JAX-RS integration support.
+* *juneau-rest-client* - A universal REST client API for interacting with
Juneau or 3rd-party REST interfaces using POJOs and proxy interfaces.
+* *juneau-rest-springboot* - Spring boot integration for juneau-rest-servlet.
+
+Questions via email to [email protected] are always welcome.
+
+Juneau is packed with features that may not be obvious at first. Users are
encouraged to ask for code reviews by providing links to specific source files
such as through GitHub. Not only can we help you with feedback, but it helps us
understand usage patterns to further improve the product.
+
+## Features
+* Fast memory-efficient serialization.
+* Fast, safe, memory-efficient parsing. Parsers are not susceptible to
deserialization attacks.
+* KISS is our mantra! No auto-wiring. No code generation. No dependency
injection. Just add it to your classpath and use it. Extremely simple unit
testing!
+* Enjoyable to use
+* Tiny - ~1MB
+* Exhaustively tested
+* Lots of up-to-date documentation and examples
+* Minimal library dependencies:
+ * juneau-marshall, juneau-dto, juneau-svl, juneau-config - No external
dependencies. Entirely self-contained.
+ * juneau-marshall-rdf - Optional RDF support. Requires Apache Jena 2.7.1+.
+ * juneau-rest-server - Any Servlet 3.1.0+ container.
+ * juneau-rest-client - Apache HttpClient 4.5+.
+* Built on top of Servlet and Apache HttpClient APIs that allow you to use the
newest HTTP/2 features such as request/response multiplexing and server push.