This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomee-site-generator.git
commit 9f46b89de133eddcda9534931e36a60a427b51a7 Author: Swell <[email protected]> AuthorDate: Tue Apr 19 21:40:33 2022 +0200 TOMEE-3917 update javadoc to MicroProfile 5.0 and Jakarta EE 9.1 --- .../org/apache/tomee/website/Configuration.java | 196 ++++++++++++++------- src/main/java/org/apache/tomee/website/Source.java | 9 +- src/main/jbake/content/download.adoc | 4 +- 3 files changed, 141 insertions(+), 68 deletions(-) diff --git a/src/main/java/org/apache/tomee/website/Configuration.java b/src/main/java/org/apache/tomee/website/Configuration.java index faf5750..6459b49 100644 --- a/src/main/java/org/apache/tomee/website/Configuration.java +++ b/src/main/java/org/apache/tomee/website/Configuration.java @@ -28,78 +28,148 @@ package org.apache.tomee.website; */ public class Configuration { public static Source[] getSources() { - final Source[] microProfile2 = new Source[]{ - new Source("https://github.com/eclipse/microprofile-jwt-auth.git", "1.1.1", "microprofile-jwt-1.1").filterJavadoc(".*/api/src/main/java/.*", ""), - new Source("https://github.com/eclipse/microprofile-config.git", "1.3", "microprofile-config-1.3").filterJavadoc(".*/api/src/main/java/.*", ""), - new Source("https://github.com/eclipse/microprofile-fault-tolerance", "1.1.4", "microprofile-fault-tolerance-1.1").filterJavadoc(".*/api/src/main/java/.*", ""), - new Source("https://github.com/eclipse/microprofile-health", "1.0", "microprofile-health-1.0").filterJavadoc(".*/api/src/main/java/.*", ""), - new Source("https://github.com/eclipse/microprofile-metrics", "1.1.1", "microprofile-metrics-1.1").filterJavadoc(".*/api/src/main/java/.*", ""), - new Source("https://github.com/eclipse/microprofile-open-api", "1.0.2", "microprofile-open-api-1.0").filterJavadoc(".*/api/src/main/java/.*", ""), - new Source("https://github.com/eclipse/microprofile-opentracing", "1.1", "microprofile-opentracing-1.1").filterJavadoc(".*/api/src/main/java/.*", ""), - new Source("https://github.com/eclipse/microprofile-rest-client", "1.1", "microprofile-rest-client-1.1").filterJavadoc(".*/api/src/main/java/.*", ""), + +// final Source[] jakartaEE10 = { +// new Source("https://github.com/eclipse-ee4j/common-annotations-api.git", "master", "jakartaee-10.0-repos/common-annotations-api"), +// new Source("https://github.com/eclipse-ee4j/concurrency-api.git", "master", "jakartaee-10.0-repos/concurrency-api"), +// new Source("https://github.com/eclipse-ee4j/ejb-api.git", "master", "jakartaee-10.0-repos/ejb-api"), +// new Source("https://github.com/eclipse-ee4j/interceptor-api.git", "master", "jakartaee-10.0-repos/interceptor-api"), +// new Source("https://github.com/eclipse-ee4j/jax-rpc-api.git", "master", "jakartaee-10.0-repos/jax-rpc-api"), +// new Source("https://github.com/eclipse-ee4j/jax-ws-api.git", "master", "jakartaee-10.0-repos/jax-ws-api"), +// new Source("https://github.com/eclipse-ee4j/jaxb-api.git", "master", "jakartaee-10.0-repos/jaxb-api"), +// new Source("https://github.com/eclipse-ee4j/jaxr-api.git", "master", "jakartaee-10.0-repos/jaxr-api"), +// new Source("https://github.com/eclipse-ee4j/jaxrs-api.git", "master", "jakartaee-10.0-repos/jaxrs-api"), +// new Source("https://github.com/eclipse-ee4j/jca-api.git", "master", "jakartaee-10.0-repos/jca-api"), +// new Source("https://github.com/eclipse-ee4j/jms-api.git", "master", "jakartaee-10.0-repos/jms-api"), +// new Source("https://github.com/eclipse-ee4j/jpa-api.git", "master", "jakartaee-10.0-repos/jpa-api"), +// new Source("https://github.com/eclipse-ee4j/jsonb-api.git", "master", "jakartaee-10.0-repos/jsonb-api"), +// new Source("https://github.com/eclipse-ee4j/jsp-api.git", "master", "jakartaee-10.0-repos/jsp-api"), +// new Source("https://github.com/eclipse-ee4j/jstl-api.git", "master", "jakartaee-10.0-repos/jstl-api"), +// new Source("https://github.com/eclipse-ee4j/jta-api.git", "master", "jakartaee-10.0-repos/jta-api"), +// new Source("https://github.com/eclipse-ee4j/jws-api.git", "master", "jakartaee-10.0-repos/jws-api"), +// new Source("https://github.com/eclipse-ee4j/management-api.git", "master", "jakartaee-10.0-repos/management-api"), +// new Source("https://github.com/eclipse-ee4j/saaj-api.git", "master", "jakartaee-10.0-repos/saaj-api"), +// new Source("https://github.com/eclipse-ee4j/security-api.git", "master", "jakartaee-10.0-repos/security-api"), +// new Source("https://github.com/eclipse-ee4j/servlet-api.git", "master", "jakartaee-10.0-repos/servlet-api"), +// new Source("https://github.com/eclipse-ee4j/websocket-api.git", "master", "jakartaee-10.0-repos/websocket-api"), +// }; + + final Source[] jakartaEE9 = { + new Source("https://github.com/eclipse-ee4j/common-annotations-api.git", "master", "jakartaee-9.1-repos/common-annotations-api"), + new Source("https://github.com/eclipse-ee4j/concurrency-api.git", "master", "jakartaee-9.1-repos/concurrency-api"), + new Source("https://github.com/eclipse-ee4j/ejb-api.git", "master", "jakartaee-9.1-repos/ejb-api"), + new Source("https://github.com/eclipse-ee4j/interceptor-api.git", "master", "jakartaee-9.1-repos/interceptor-api"), + new Source("https://github.com/eclipse-ee4j/jax-rpc-api.git", "master", "jakartaee-9.1-repos/jax-rpc-api"), + new Source("https://github.com/eclipse-ee4j/jax-ws-api.git", "master", "jakartaee-9.1-repos/jax-ws-api"), + new Source("https://github.com/eclipse-ee4j/jaxb-api.git", "master", "jakartaee-9.1-repos/jaxb-api"), + new Source("https://github.com/eclipse-ee4j/jaxr-api.git", "master", "jakartaee-9.1-repos/jaxr-api"), + new Source("https://github.com/eclipse-ee4j/jaxrs-api.git", "master", "jakartaee-9.1-repos/jaxrs-api"), + new Source("https://github.com/eclipse-ee4j/jca-api.git", "master", "jakartaee-9.1-repos/jca-api"), + new Source("https://github.com/eclipse-ee4j/jms-api.git", "master", "jakartaee-9.1-repos/jms-api"), + new Source("https://github.com/eclipse-ee4j/jpa-api.git", "master", "jakartaee-9.1-repos/jpa-api"), + new Source("https://github.com/eclipse-ee4j/jsonb-api.git", "master", "jakartaee-9.1-repos/jsonb-api"), + new Source("https://github.com/eclipse-ee4j/jsp-api.git", "master", "jakartaee-9.1-repos/jsp-api"), + new Source("https://github.com/eclipse-ee4j/jstl-api.git", "master", "jakartaee-9.1-repos/jstl-api"), + new Source("https://github.com/eclipse-ee4j/jta-api.git", "master", "jakartaee-9.1-repos/jta-api"), + new Source("https://github.com/eclipse-ee4j/jws-api.git", "master", "jakartaee-9.1-repos/jws-api"), + new Source("https://github.com/eclipse-ee4j/management-api.git", "master", "jakartaee-9.1-repos/management-api"), + new Source("https://github.com/eclipse-ee4j/saaj-api.git", "master", "jakartaee-9.1-repos/saaj-api"), + new Source("https://github.com/eclipse-ee4j/security-api.git", "master", "jakartaee-9.1-repos/security-api"), + new Source("https://github.com/eclipse-ee4j/servlet-api.git", "master", "jakartaee-9.1-repos/servlet-api"), + new Source("https://github.com/eclipse-ee4j/websocket-api.git", "master", "jakartaee-9.1-repos/websocket-api"), }; final Source[] jakartaEE8 = { - new Source("https://github.com/eclipse-ee4j/common-annotations-api.git", "EE4J_8", "common-annotations-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/concurrency-api.git", "EE4J_8", "concurrency-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/ejb-api.git", "EE4J_8", "ejb-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/interceptor-api.git", "EE4J_8", "interceptor-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jax-rpc-api.git", "EE4J_8", "jax-rpc-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jax-ws-api.git", "EE4J_8", "jax-ws-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jaxb-api.git", "EE4J_8", "jaxb-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jaxr-api.git", "EE4J_8", "jaxr-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jaxrs-api.git", "EE4J_8", "jaxrs-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jca-api.git", "EE4J_8", "jca-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jms-api.git", "EE4J_8", "jms-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jpa-api.git", "EE4J_8", "jpa-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jsonb-api.git", "EE4J_8", "jsonb-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jsp-api.git", "EE4J_8", "jsp-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jstl-api.git", "EE4J_8", "jstl-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jta-api.git", "EE4J_8", "jta-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/jws-api.git", "EE4J_8", "jws-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/management-api.git", "EE4J_8", "management-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/saaj-api.git", "EE4J_8", "saaj-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/security-api.git", "EE4J_8", "security-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/servlet-api.git", "EE4J_8", "servlet-api-EE4J_81.0"), - new Source("https://github.com/eclipse-ee4j/websocket-api.git", "EE4J_8", "websocket-api-EE4J_81.0") + new Source("https://github.com/eclipse-ee4j/common-annotations-api.git", "EE4J_8", "jakartaee-8.0-repos/common-annotations-api"), + new Source("https://github.com/eclipse-ee4j/concurrency-api.git", "EE4J_8", "jakartaee-8.0-repos/concurrency-api"), + new Source("https://github.com/eclipse-ee4j/ejb-api.git", "EE4J_8", "jakartaee-8.0-repos/ejb-api"), + new Source("https://github.com/eclipse-ee4j/interceptor-api.git", "EE4J_8", "jakartaee-8.0-repos/interceptor-api"), + new Source("https://github.com/eclipse-ee4j/jax-rpc-api.git", "EE4J_8", "jakartaee-8.0-repos/jax-rpc-api"), + new Source("https://github.com/eclipse-ee4j/jax-ws-api.git", "EE4J_8", "jakartaee-8.0-repos/jax-ws-api"), + new Source("https://github.com/eclipse-ee4j/jaxb-api.git", "EE4J_8", "jakartaee-8.0-repos/jaxb-api"), + new Source("https://github.com/eclipse-ee4j/jaxr-api.git", "EE4J_8", "jakartaee-8.0-repos/jaxr-api"), + new Source("https://github.com/eclipse-ee4j/jaxrs-api.git", "EE4J_8", "jakartaee-8.0-repos/jaxrs-api"), + new Source("https://github.com/eclipse-ee4j/jca-api.git", "EE4J_8", "jakartaee-8.0-repos/jca-api"), + new Source("https://github.com/eclipse-ee4j/jms-api.git", "EE4J_8", "jakartaee-8.0-repos/jms-api"), + new Source("https://github.com/eclipse-ee4j/jpa-api.git", "EE4J_8", "jakartaee-8.0-repos/jpa-api"), + new Source("https://github.com/eclipse-ee4j/jsonb-api.git", "EE4J_8", "jakartaee-8.0-repos/jsonb-api"), + new Source("https://github.com/eclipse-ee4j/jsp-api.git", "EE4J_8", "jakartaee-8.0-repos/jsp-api"), + new Source("https://github.com/eclipse-ee4j/jstl-api.git", "EE4J_8", "jakartaee-8.0-repos/jstl-api"), + new Source("https://github.com/eclipse-ee4j/jta-api.git", "EE4J_8", "jakartaee-8.0-repos/jta-api"), + new Source("https://github.com/eclipse-ee4j/jws-api.git", "EE4J_8", "jakartaee-8.0-repos/jws-api"), + new Source("https://github.com/eclipse-ee4j/management-api.git", "EE4J_8", "jakartaee-8.0-repos/management-api"), + new Source("https://github.com/eclipse-ee4j/saaj-api.git", "EE4J_8", "jakartaee-8.0-repos/saaj-api"), + new Source("https://github.com/eclipse-ee4j/security-api.git", "EE4J_8", "jakartaee-8.0-repos/security-api"), + new Source("https://github.com/eclipse-ee4j/servlet-api.git", "EE4J_8", "jakartaee-8.0-repos/servlet-api"), + new Source("https://github.com/eclipse-ee4j/websocket-api.git", "EE4J_8", "jakartaee-8.0-repos/websocket-api"), }; - final Source[] jakartaEE9 = { - new Source("https://github.com/eclipse-ee4j/common-annotations-api.git", "master", "common-annotations-api-ee9"), - new Source("https://github.com/eclipse-ee4j/concurrency-api.git", "master", "concurrency-api-ee9"), - new Source("https://github.com/eclipse-ee4j/ejb-api.git", "master", "ejb-api-ee9"), - new Source("https://github.com/eclipse-ee4j/interceptor-api.git", "master", "interceptor-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jax-rpc-api.git", "master", "jax-rpc-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jax-ws-api.git", "master", "jax-ws-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jaxb-api.git", "master", "jaxb-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jaxr-api.git", "master", "jaxr-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jaxrs-api.git", "master", "jaxrs-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jca-api.git", "master", "jca-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jms-api.git", "master", "jms-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jpa-api.git", "master", "jpa-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jsonb-api.git", "master", "jsonb-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jsp-api.git", "master", "jsp-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jstl-api.git", "master", "jstl-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jta-api.git", "master", "jta-api-ee9"), - new Source("https://github.com/eclipse-ee4j/jws-api.git", "master", "jws-api-ee9"), - new Source("https://github.com/eclipse-ee4j/management-api.git", "master", "management-api-ee9"), - new Source("https://github.com/eclipse-ee4j/saaj-api.git", "master", "saaj-api-ee9"), - new Source("https://github.com/eclipse-ee4j/security-api.git", "master", "security-api-ee9"), - new Source("https://github.com/eclipse-ee4j/servlet-api.git", "master", "servlet-api-ee9"), - new Source("https://github.com/eclipse-ee4j/websocket-api.git", "master", "websocket-api-ee9") +// final Source[] microProfile6 = new Source[]{ +// new Source("https://github.com/eclipse/microprofile-config.git", "master", "microprofile-6.0-repos/config").filterJavadoc(".*/api/src/main/java/.*", ""), +// new Source("https://github.com/eclipse/microprofile-fault-tolerance", "master", "microprofile-6.0-repos/fault-tolerance").filterJavadoc(".*/api/src/main/java/.*", ""), +// new Source("https://github.com/eclipse/microprofile-health", "master", "microprofile-6.0-repos/health").filterJavadoc(".*/api/src/main/java/.*", ""), +// new Source("https://github.com/eclipse/microprofile-jwt-auth.git", "master", "microprofile-6.0-repos/jwt").filterJavadoc(".*/api/src/main/java/.*", ""), +// new Source("https://github.com/eclipse/microprofile-metrics", "master", "microprofile-6.0-repos/metrics").filterJavadoc(".*/api/src/main/java/.*", ""), +// new Source("https://github.com/eclipse/microprofile-open-api", "master", "microprofile-6.0-repos/open-api").filterJavadoc(".*/api/src/main/java/.*", ""), +// new Source("https://github.com/eclipse/microprofile-opentracing", "master", "microprofile-6.0-repos/opentracing").filterJavadoc(".*/api/src/main/java/.*", ""), +// new Source("https://github.com/eclipse/microprofile-rest-client", "master", "microprofile-6.0-repos/rest-client").filterJavadoc(".*/api/src/main/java/.*", ""), +// }; + + final Source[] microProfile5 = new Source[]{ + new Source("https://github.com/eclipse/microprofile-config.git", "3.0.1", "microprofile-5.0-repos/config").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-fault-tolerance", "4.0", "microprofile-5.0-repos/fault-tolerance").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-health", "4.0", "microprofile-5.0-repos/health").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-jwt-auth.git", "2.0", "microprofile-5.0-repos/jwt").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-metrics", "4.0.1", "microprofile-5.0-repos/metrics").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-open-api", "3.0", "microprofile-5.0-repos/open-api").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-opentracing", "3.0", "microprofile-5.0-repos/opentracing").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-rest-client", "3.0", "microprofile-5.0-repos/rest-client").filterJavadoc(".*/api/src/main/java/.*", ""), + }; + + final Source[] microProfile4 = new Source[]{ + new Source("https://github.com/eclipse/microprofile-config.git", "2.0.1", "microprofile-4.1-repos/config").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-fault-tolerance", "3.0", "microprofile-4.1-repos/fault-tolerance").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-health", "3.1", "microprofile-4.1-repos/health").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-jwt-auth.git", "1.2.2", "microprofile-4.1-repos/jwt").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-metrics", "3.0.1", "microprofile-4.1-repos/metrics").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-open-api", "2.0.1", "microprofile-4.1-repos/open-api").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-opentracing", "2.0", "microprofile-4.1-repos/opentracing").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-rest-client", "2.0", "microprofile-4.1-repos/rest-client").filterJavadoc(".*/api/src/main/java/.*", ""), + }; + + final Source[] microProfile2 = new Source[]{ + new Source("https://github.com/eclipse/microprofile-config.git", "1.3", "microprofile-2.0-repos/config").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-fault-tolerance", "1.1.4", "microprofile-2.0-repos/fault-tolerance").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-health", "1.0", "microprofile-2.0-repos/health").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-jwt-auth.git", "1.1.1", "microprofile-2.0-repos/jwt").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-metrics", "1.1.5", "microprofile-2.0-repos/metrics").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-open-api", "1.0.1", "microprofile-2.0-repos/open-api").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-opentracing", "1.1.2", "microprofile-2.0-repos/opentracing").filterJavadoc(".*/api/src/main/java/.*", ""), + new Source("https://github.com/eclipse/microprofile-rest-client", "1.1", "microprofile-2.0-repos/rest-client").filterJavadoc(".*/api/src/main/java/.*", ""), }; -// if (1 == 1) return new Source[0]; +// if (1 == 1) return new Source[0]; // uncomment this line to generate only the main site pages. return new Source[]{ -// new Source("https://github.com/apache/tomee.git", "master", "tomee-8.0"), - new Source("https://github.com/apache/tomee.git", "master", "tomee-9.0", false, "8.0.9").label("milestone").related(microProfile2).related(jakartaEE9).javadoc("^org.apache.(openejb|tomee).*"), - new Source("https://github.com/apache/tomee.git", "master", "tomee-8.0", true, "8.0.9").related(microProfile2).related(jakartaEE8).javadoc("^org.apache.(openejb|tomee).*"), - new Source("https://github.com/apache/tomee.git", "tomee-7.1.0", "tomee-7.1", false, "7.1.4").javadoc("^org.apache.(openejb|tomee).*"), - new Source("https://github.com/apache/tomee.git", "tomee-7.0.5", "tomee-7.0", false, "7.0.9").javadoc("^org.apache.(openejb|tomee).*"), - new Source("https://github.com/apache/tomee.git", "master", "master", false, "8.0.9").javadoc("^org.apache.(openejb|tomee).*"), - new Source("https://github.com/eclipse/microprofile-bom.git", "master", "microprofile-2.0").related(microProfile2).javadoc("^org.eclipse.microprofile.*"), + // TOMEE NEXT +// new Source("https://github.com/apache/tomee.git", "master", "tomee-10.0", false, "10.0.0-M1").label("milestone").related(microProfile6).related(jakartaEE10).javadoc("^org.apache.(openejb|tomee).*"), +// new Source("https://github.com/apache/tomee.git", "tomee-9.0", "tomee-9.0", true, "9.0.0").related(microProfile5).related(jakartaEE9).javadoc("^org.apache.(openejb|tomee).*"), +// new Source("https://github.com/apache/tomee.git", "tomee-8.x", "tomee-8.0", false, "8.0.11").related(microProfile2).related(jakartaEE8).javadoc("^org.apache.(openejb|tomee).*"), +// new Source("https://github.com/apache/tomee.git", "tomee-7.1.x", "tomee-7.1", false, "7.1.4").javadoc("^org.apache.(openejb|tomee).*"), +// new Source("https://github.com/apache/tomee.git", "tomee-7.0.x", "tomee-7.0", false, "7.0.9").javadoc("^org.apache.(openejb|tomee).*"), + // TOMEE CURRENT + new Source("https://github.com/apache/tomee.git", "master", "tomee-9.0", false, "9.0.0-M7").label("milestone").related(microProfile5).related(jakartaEE9).javadoc("^org.apache.(openejb|tomee).*"), + new Source("https://github.com/apache/tomee.git", "tomee-8.x", "tomee-8.0", true, "8.0.10").related(microProfile2).related(jakartaEE8).javadoc("^org.apache.(openejb|tomee).*"), + new Source("https://github.com/apache/tomee.git", "tomee-7.1.x", "tomee-7.1", false, "7.1.4").javadoc("^org.apache.(openejb|tomee).*"), + new Source("https://github.com/apache/tomee.git", "tomee-7.0.x", "tomee-7.0", false, "7.0.9").javadoc("^org.apache.(openejb|tomee).*"), + // JAKARTA EE +// new Source("https://github.com/eclipse-ee4j/jakartaee-platform.git", "v10.0", "jakartaee-10.0").related(jakartaEE10).javadoc("^jakarta.*"), + new Source("https://github.com/eclipse-ee4j/jakartaee-platform.git", "v9.1", "jakartaee-9.1").related(jakartaEE9).javadoc("^jakarta.*"), new Source("https://github.com/eclipse-ee4j/jakartaee-platform.git", "v8", "jakartaee-8.0").related(jakartaEE8).javadoc("^javax.*"), - new Source("https://github.com/eclipse-ee4j/jakartaee-platform.git", "master", "jakartaee-9.0").related(jakartaEE9).javadoc("^jakarta.*") + // MICRO PROFILE +// new Source("https://github.com/eclipse/microprofile.git", "6.0", "microprofile-6.0").related(microProfile6).javadoc("^org.eclipse.microprofile.*"), + new Source("https://github.com/eclipse/microprofile.git", "5.0", "microprofile-5.0").related(microProfile5).javadoc("^org.eclipse.microprofile.*"), + new Source("https://github.com/eclipse/microprofile.git", "4.1", "microprofile-4.1").related(microProfile4).javadoc("^org.eclipse.microprofile.*"), + new Source("https://github.com/eclipse/microprofile.git", "2.0", "microprofile-2.0").related(microProfile2).javadoc("^org.eclipse.microprofile.*"), }; } } diff --git a/src/main/java/org/apache/tomee/website/Source.java b/src/main/java/org/apache/tomee/website/Source.java index 84cab92..4b887c1 100644 --- a/src/main/java/org/apache/tomee/website/Source.java +++ b/src/main/java/org/apache/tomee/website/Source.java @@ -32,13 +32,16 @@ import java.util.stream.Stream; * * Currently we have the following notable sources: * + * - latest + * - tomee-9.0 * - tomee-8.0 * - tomee-7.1 * - tomee-7.0 - * - microprofile-2.0 + * - jakartaee-9.1 * - jakartaee-8.0 - * - master - * - latest + * - microprofile-5.0 + * - microprofile-4.1 + * - microprofile-2.0 * * Each of these sources are given its own section on the website, for example: * diff --git a/src/main/jbake/content/download.adoc b/src/main/jbake/content/download.adoc index 6f0a870..f6a0639 100755 --- a/src/main/jbake/content/download.adoc +++ b/src/main/jbake/content/download.adoc @@ -12,8 +12,8 @@ You **must** link:https://www.apache.org/info/verification.html[verify] the inte == [[tomee-9.0]]Apache TomEE 9.0 - Jakarta EE 9.1 -- MicroProfile 2.0 -- Java 8 or higher +- MicroProfile 5.0 +- Java 11 or higher - link:9.0.0-M7/release-notes.html[Release Notes] - link:9.0.0-M7/plume/webprofile-9.1.html[Jakarta EE 9.1 Web Profile TCK Results for Java 11]
