From 4bc2b674a59ac4f3c4a0cd9f11abf9f66a40a75a Mon Sep 17 00:00:00 2001 From: James Cobb Date: Thu, 14 Sep 2023 11:37:51 -0500 Subject: [PATCH 1/2] About content update --- _includes/quarkus-projects.html | 43 +++++++++++++ _layouts/about.html | 2 + assets/images/about/icon-blocks.svg | 95 +++++++++++++++++++++++++++++ 3 files changed, 140 insertions(+) create mode 100644 _includes/quarkus-projects.html create mode 100644 assets/images/about/icon-blocks.svg diff --git a/_includes/quarkus-projects.html b/_includes/quarkus-projects.html new file mode 100644 index 00000000000..d1a9c306e5b --- /dev/null +++ b/_includes/quarkus-projects.html @@ -0,0 +1,43 @@ +
+
+
+ +
+
+

Quarkus is built from the Community

+

Quarkus heavily leverages other mature projects from the Java Ecosystem. Quarkus favours the philosophy of building on the shoulders of giants, rather than re-inventing the wheel. Below are some of the community projects that Quarkus builds upon.

+
+
+

Eclipse Vert.x

+

The Eclipse Vert.x project enables writing of reactive applications that run on the JVM. The project powers the reactive aspects of Quarkus.

+
+
+

SmallRye

+

The SmallRye project offers implementations of the Eclipse MicroProfile specifications that are used by the Quarkus runtime. Examples of the MicroProfile specifications implemented by SmallRye and leveraged by Quarkus are Metrics, Health, and Fault Tolerance.

+
+
+

Hibernate

+

The Hibernate project provides an implementation of the Java Persistence API (JPA) that is leveraged by the Quarkus runtime to enable working with databases.

+
+
+

Netty

+

The Netty project offers capabilities for building asynchronous, event-driven, network applications. Together with Vert.x, Netty powers the reactive + async core of Quarkus, enabling event-driven architectures.

+
+
+

RESTEasy

+

RESTEasy provides implementations for both the JAX-RS and MicroProfile REST Client specifications. Quarkus leverages these RESTEasy implementations to allow building of applications that follow the REST architectural style.

+
+
+

Apache Camel

+

The Apache Camel project provides capabilities for integrating heterogeneous (messaging/event-based) systems. The support for Apache Camel on top of Quarkus is provided by the Apache Camel Quarkus project.

+
+
+

Eclipse MicroProfile

+

The Eclipse MicroProfile project brings together a set of specifications that makes it easier to write Java applications based on the microservices architecture.

+
+
+

Mandrel

+

Mandrel is a downstream distribution of the GraalVM community edition. Mandrel focuses on GraalVM's native-image component in order to provide an easy way for Quarkus users to generate native images for their applications.

+
+
+
\ No newline at end of file diff --git a/_layouts/about.html b/_layouts/about.html index 42dd76f0866..e8668392a12 100644 --- a/_layouts/about.html +++ b/_layouts/about.html @@ -5,3 +5,5 @@ {% include title-band.html %} {% include about.html %} + +{% include quarkus-projects.html %} diff --git a/assets/images/about/icon-blocks.svg b/assets/images/about/icon-blocks.svg new file mode 100644 index 00000000000..f821da569b0 --- /dev/null +++ b/assets/images/about/icon-blocks.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 0b465efec225826e124aba7b13710174e4438f0c Mon Sep 17 00:00:00 2001 From: James Cobb Date: Thu, 5 Oct 2023 15:41:53 -0500 Subject: [PATCH 2/2] move title above image --- _includes/quarkus-projects.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/_includes/quarkus-projects.html b/_includes/quarkus-projects.html index d1a9c306e5b..a4dc35b938d 100644 --- a/_includes/quarkus-projects.html +++ b/_includes/quarkus-projects.html @@ -1,10 +1,12 @@ -
+
+
+

Quarkus is built from the Community

+
-

Quarkus is built from the Community

Quarkus heavily leverages other mature projects from the Java Ecosystem. Quarkus favours the philosophy of building on the shoulders of giants, rather than re-inventing the wheel. Below are some of the community projects that Quarkus builds upon.