<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Home on Jakarta® EE: The New Home of Cloud Native Java</title>
    <link>https://redesign-2025--jakartaee.netlify.app/</link>
    <description>Recent content in Home on Jakarta® EE: The New Home of Cloud Native Java</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en</language>
    <managingEditor>webdev@eclipse-foundation.org (Eclipse Foundation)</managingEditor>
    <webMaster>webdev@eclipse-foundation.org (Eclipse Foundation)</webMaster>
    <lastBuildDate>Mon, 10 Nov 2025 00:00:00 +0000</lastBuildDate><atom:link href="https://redesign-2025--jakartaee.netlify.app/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>How to Build a RESTful Web Service Using Jakarta EE</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/how-to-build-a-restful-web-service/</link>
      <pubDate>Fri, 22 Sep 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/how-to-build-a-restful-web-service/</guid>
      <description>&lt;p&gt;This guide shows you how to use Jakarta EE to make a&lt;br&gt;
&lt;a href=&#34;https://jakarta.ee/specifications/restful-ws/&#34;&gt;RESTful web service&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To create a RESTful web service using &lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/&#34;&gt;Jakarta EE&lt;/a&gt;, we will begin by&lt;br&gt;
summarizing what we want to build.&lt;/p&gt;
&lt;p&gt;We will build a service that will accept an HTTP GET&lt;sup&gt;&lt;a href=&#34;#footnote-1&#34;&gt;1&lt;/a&gt;&lt;/sup&gt;
&lt;br&gt;
request at &lt;!-- raw HTML omitted --&gt;http://localhost:8080/restfulservice/hello&lt;!-- raw HTML omitted --&gt;.&lt;/p&gt;
&lt;p&gt;It will respond with the following JSON payload, as the following listing&lt;br&gt;
shows:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-json&#34; data-lang=&#34;json&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;p&#34;&gt;{&lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;&amp;#34;text&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt; &lt;span class=&#34;s2&#34;&gt;&amp;#34;Hello from Jakarta EE&amp;#34;&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;}&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;We can then further customize and improve it according to our needs.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Getting Started with Jakarta EE: A Comprehensive Beginner&#39;s Guide to the Get Started</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/a-comprehensive-beginners-guide-to-the-get-started/</link>
      <pubDate>Tue, 21 Oct 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/a-comprehensive-beginners-guide-to-the-get-started/</guid>
      <description>&lt;p&gt;As a new Java developer or a student preparing for a career in enterprise&lt;br&gt;
software, understanding Jakarta EE is essential. Evolving from Java EE, it&lt;br&gt;
provides a reliable platform with APIs for building scalable, secure, and&lt;br&gt;
portable applications. Jakarta EE is used across industries such as banking,&lt;br&gt;
e-commerce, healthcare, and government.&lt;/p&gt;
&lt;h2 id=&#34;what-is-jakarta-ee-and-why-it-matters&#34;&gt;What is Jakarta EE and Why It Matters&lt;/h2&gt;
&lt;p&gt;&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/&#34;&gt;Jakarta EE&lt;/a&gt; is a set of specifications used for building&lt;br&gt;
Java products and frameworks for building large-scale enterprise applications.&lt;br&gt;
It powers systems like banks, e-commerce sites, and corporate platforms. It&lt;br&gt;
builds on Java SE with additional APIs for web development, database access,&lt;br&gt;
messaging, and security. If your goal is to create production-grade Java&lt;br&gt;
applications, Jakarta EE provides the tools and standards to get there.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>How to Secure a RESTful Web Service Using Jakarta EE</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/how-to-secure-a-restful-web-service/</link>
      <pubDate>Fri, 29 Sep 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/how-to-secure-a-restful-web-service/</guid>
      <description>&lt;p&gt;This guide shows you how to secure a rest endpoint using&lt;br&gt;
&lt;a href=&#34;https://jakarta.ee/specifications/authentication/&#34;&gt;Jakarta Authentication&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;As we delve into securing RESTful web services, let&amp;rsquo;s first define a basic&lt;br&gt;
scenario that we will be working with throughout this article.&lt;/p&gt;
&lt;p&gt;We are constructing a service that will accept an HTTP GET request at&lt;br&gt;
&lt;!-- raw HTML omitted --&gt;http://localhost:8080/jakartaee-hello-world/rest/hello&lt;!-- raw HTML omitted --&gt;. In&lt;br&gt;
response to this request, our service will return a JSON payload, as shown in&lt;br&gt;
the following example:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>How to store and retrieve data using Jakarta Persistence of Jakarta EE</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/how-to-store-and-retrieve-data-using-jakarta-persistence/</link>
      <pubDate>Fri, 22 Sep 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/how-to-store-and-retrieve-data-using-jakarta-persistence/</guid>
      <description>&lt;p&gt;This guide shows you how to store and retrieve data using&lt;br&gt;
&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/specifications/persistence/&#34;&gt;Jakarta Persistence&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We will first begin by summarizing what we want to build. Next, we build a&lt;br&gt;
&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/specifications/restful-ws/&#34;&gt;RESTful web service&lt;/a&gt; that can consume data, store&lt;br&gt;
it in a database using Jakarta Persistence, and serve it as a REST endpoint.&lt;br&gt;
For those unfamiliar with RESTful web services, we recommend reading our&lt;br&gt;
&lt;a href=&#34;../how-to-build-a-restful-web-service/&#34;&gt;previous article&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We will build an application that handles coffee product data. The service will&lt;br&gt;
consume a JSON payload containing the product&amp;rsquo;s ID, name, and price. Here&amp;rsquo;s an&lt;br&gt;
example of the JSON payload:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>10 ways to accelerate your career with Jakarta EE</title>
      <link>https://redesign-2025--jakartaee.netlify.app/news/2025/11/10/10-ways-to-accelerate-your-career-with-jakarta-ee/</link>
      <pubDate>Mon, 10 Nov 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/news/2025/11/10/10-ways-to-accelerate-your-career-with-jakarta-ee/</guid>
      <description>This article explores ten reasons to get involved in open source, highlighting how contributions to the Java standards for enterprise applications, Jakarta EE, can help you grow professionally while shaping the future of the software industry.</description>
    </item>
    
    <item>
      <title>What&#39;s Up with Open Standard Enterprise Java and AI?</title>
      <link>https://redesign-2025--jakartaee.netlify.app/blogs/open-standard-enterprise-java-and-ai/</link>
      <pubDate>Thu, 02 Oct 2025 12:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/blogs/open-standard-enterprise-java-and-ai/</guid>
      <description>Enterprise Java has always been about standards—about providing a foundation that&amp;rsquo;s stable, interoperable, and vendor-neutral. If you&amp;rsquo;ve been around since the days of Servlets, EJBs, and JPA, you know that Jakarta EE&amp;rsquo;s approach is to standardize what&amp;rsquo;s proven, not chase every shiny new thing. That&amp;rsquo;s why mission-critical systems still rely on Jakarta EE&amp;rsquo;s backbone, and why customers look to the platform for direction and leadership. The Eclipse Foundation&amp;rsquo;s stewardship and open process help to reinforce this.</description>
    </item>
    
    <item>
      <title>Beyond the Hype: 10 Reasons Jakarta EE is Still the Smartest Choice</title>
      <link>https://redesign-2025--jakartaee.netlify.app/news/2025/07/31/beyond-the-hype-10-reasons-jakarta-ee-is-still-the-smartest-choice/</link>
      <pubDate>Thu, 31 Jul 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/news/2025/07/31/beyond-the-hype-10-reasons-jakarta-ee-is-still-the-smartest-choice/</guid>
      <description>In this article, I will talk about why Jakarta EE is the best technology investment for you as a Software Architect, C-level, and Senior Engineer as well.</description>
    </item>
    
    <item>
      <title>Jakarta NoSQL and Jakarta Persistence Explained</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/nosql-and-persistence-explained/</link>
      <pubDate>Tue, 29 Apr 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/nosql-and-persistence-explained/</guid>
      <description>&lt;h2 id=&#34;abstract&#34;&gt;Abstract&lt;/h2&gt;
&lt;p&gt;The Jakarta EE ecosystem offers specifications for building database backend&lt;br&gt;
applications using relational and/or NoSQL databases. The Jakarta Persistence&lt;br&gt;
specification, with a rich history dating back almost 20 years, has been a&lt;br&gt;
staple in the Java community for writing relational database applications. The&lt;br&gt;
Jakarta NoSQL specification, with a short history dating back to 2020, provides&lt;br&gt;
comprehensive support for all four types of NoSQL databases.&lt;/p&gt;
&lt;h2 id=&#34;introduction&#34;&gt;Introduction&lt;/h2&gt;
&lt;p&gt;The Jakarta EE ecosystem offers specifications for building database backend&lt;br&gt;
applications using relational and/or NoSQL databases. The &lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/specifications/persistence/&#34;&gt;Jakarta Persistence&lt;/a&gt;&lt;br&gt;
specification, with a rich history dating back almost 20 years, has been a&lt;br&gt;
staple in the Java community for writing relational database applications. The&lt;br&gt;
&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/specifications/nosql/&#34;&gt;Jakarta NoSQL&lt;/a&gt; specification, with a short history&lt;br&gt;
dating back to 2020, provides comprehensive support for all four types of NoSQL&lt;br&gt;
databases.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta NoSQL 1.0 Final Released: Bridging Java and NoSQL with Standards</title>
      <link>https://redesign-2025--jakartaee.netlify.app/blogs/jakarta-nosql-1-0/</link>
      <pubDate>Wed, 26 Mar 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/blogs/jakarta-nosql-1-0/</guid>
      <description>&lt;p&gt;We’re thrilled to announce the &lt;strong&gt;final release of Jakarta NoSQL 1.0&lt;/strong&gt;, a brand-new specification designed to bring standardization, productivity, and portability to NoSQL integration in the Java ecosystem.&lt;/p&gt;
&lt;p&gt;This release marks a significant step in the Jakarta EE platform by introducing the &lt;strong&gt;first-ever NoSQL specification&lt;/strong&gt;. Whether you’re working with document, key-value, column, or graph databases, Jakarta NoSQL is built to streamline your development experience.&lt;/p&gt;
&lt;h2 id=&#34;why-jakarta-nosql&#34;&gt;Why Jakarta NoSQL?&lt;/h2&gt;
&lt;p&gt;Jakarta NoSQL was created to make it easier and more productive for developers to work with NoSQL databases while staying fully within the Jakarta EE programming model. It brings:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Key Takeaways from the Cloud Native Java Survey</title>
      <link>https://redesign-2025--jakartaee.netlify.app/blogs/key-takeaways-cloud-native-java-survey/</link>
      <pubDate>Thu, 27 Feb 2025 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Shabnam Mayel)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/blogs/key-takeaways-cloud-native-java-survey/</guid>
      <description>&lt;p&gt;The &lt;strong&gt;Jakarta EE Working Group&lt;/strong&gt; conducted the first-ever &lt;strong&gt;Cloud Native Java&lt;br&gt;
Survey&lt;/strong&gt; between July 11, 2024 and August 23, 2024 to gather insights on&lt;br&gt;
popular Java SE versions, Jakarta EE, and MicroProfile usage. The results from&lt;br&gt;
over 170 respondents left us with a number of important takeaways about the&lt;br&gt;
adoption of enterprise Java technologies, developer priorities, and more. Here&lt;br&gt;
are the key findings.&lt;/p&gt;
&lt;h2 id=&#34;java-eejakarta-ee-adoption&#34;&gt;Java EE/Jakarta EE Adoption&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Jakarta EE 8 &amp;amp; Java EE 8&lt;/strong&gt; remain the most widely used versions.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Jakarta EE 10&lt;/strong&gt; adoption is growing as developers skip EE 9/9.1, which were&lt;br&gt;
transitional.&lt;/li&gt;
&lt;li&gt;A notable portion still relies on &lt;strong&gt;legacy Java EE versions&lt;/strong&gt; (e.g., EE 6,&lt;br&gt;
released 15 years ago).&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/jakarta-versions-used.png&#34;
         alt=&#34;A pie chart displaying versions of Jakarta EE and Java EE and their popularity as a percentage. Jakarta EE 10 with 52%; Java EE 8 with 34%; Jakarta EE 8 with 22%; Don&amp;#39;t use with 18%; Jakarta EE 9.x with 14%; Java EE 6 with 13%; Java EE 7 with 10%; Older than Java EE 6 with 10%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;microprofile-adoption&#34;&gt;MicroProfile Adoption&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;A majority &lt;strong&gt;do not use MicroProfile&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Those who do mostly run &lt;strong&gt;newer versions&lt;/strong&gt; (MicroProfile 6 aligns with&lt;br&gt;
Jakarta EE 10).&lt;/li&gt;
&lt;li&gt;Some developers remain on &lt;strong&gt;older MicroProfile releases&lt;/strong&gt;, indicating slow&lt;br&gt;
migration.&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/microprofile-versions-used.png&#34;
         alt=&#34;A pie chart displaying versions of MicroProfile and their popularity as a percentage. Don&amp;#39;t use with 50%; MicroProfile 6.x with 35%; MicroProfile 5.x with 19%; MicroProfile 4.x with 12%; MicroProfile 3.x with 11%; MicroProfile 1.x with 6%; MicroProfile 2.x with 4%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;java-se-versions&#34;&gt;Java SE Versions&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Java SE 17&lt;/strong&gt; is the most used version.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Almost half&lt;/strong&gt; of developers are already on &lt;strong&gt;Java SE 21&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Java SE 8 and 11&lt;/strong&gt; still have significant usage, despite being outdated.&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-16 col-sm-offset-4&#34; src=&#34;./images/java-versions-used.png&#34;
         alt=&#34;A pie chart displaying versions of Java SE and their popularity as a percentage. Java SE 17 with 58%; Java SE 21 with 48%; Java SE 11 with 38%; Java SE 8 with 37%; Java SE 22 with 13%; Java SE 7 or older with 10%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;popular-java-runtimes&#34;&gt;Popular Java Runtimes&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Spring Boot, Tomcat, Quarkus, and WildFly&lt;/strong&gt; dominate the landscape.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;GlassFish, JBoss EAP, Payara, and Open Liberty&lt;/strong&gt; also have strong adoption.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Jetty, TomEE, and WebSphere&lt;/strong&gt; hold niche market shares.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Helidon and some Asian runtimes&lt;/strong&gt; have limited traction (~5% adoption).&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/popular-java-runtimes.png&#34;
         alt=&#34;A pie chart displaying popular Java Runtimes. Spring Boot with 38%; Tomcat with 33%; Quarkus with 32%; WildFly with 31%; GlassFish with 20%; JBoss EAP with 18%; Payara with 18%; Liberty with 16%; Jetty with 14%; TomEE with 14%; WebSphere with 13%, WebLogic with 13%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;popular-jakarta-ee-apis&#34;&gt;Popular Jakarta EE APIs&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Jakarta REST (JAX-RS), CDI, and JPA&lt;/strong&gt; are the most widely used.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;JSON, Servlet, and EJB&lt;/strong&gt; also see strong adoption.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;JSF, JSP, and JMS usage is declining&lt;/strong&gt; as JavaScript frameworks and alternative&lt;br&gt;
messaging solutions gain traction.&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/popular-jakarta-apis.png&#34;
         alt=&#34;A horizontal bar chart where the y-axis is the Jakarta EE API and the x-axis represents the usage as a percentage. The first group is as follows: REST with 70%, CDI with 68%, Persistence with 66%. The second group is as follows: JSON Binding with 58%, Servlet with 57%, JSON Processing with 53%, Validation with 53%, Enterprise Beans with 52%. The third group is as follows: Transactions with 49%, Mail with 48%, Faces with 44%, Messaging with 42%, Security with 40%, Expression Language with 38%. The fourth group is as follows: SOAP with 34%, Concurrency with 33%, WebSocket with 28%, Batch with 21%, Pages with 21%, Connectors with 19%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;microprofile-apis&#34;&gt;MicroProfile APIs&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Config, OpenAPI, and REST Client&lt;/strong&gt; lead usage.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Health, Metrics, and JWT&lt;/strong&gt; are commonly used for cloud native applications.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;GraphQL, OpenTracing, and Reactive Messaging&lt;/strong&gt; see limited adoption.&lt;/li&gt;
&lt;/ul&gt;


&lt;figure class=&#34;eclipsefdn-figure row margin-y-30&#34;&gt;
    &lt;img class=&#34;img img-responsive col-sm-18 col-sm-offset-3&#34; src=&#34;./images/popular-microprofile-apis.png&#34;
         alt=&#34;A horizontal bar chart where the y-axis is the MicroProfile API and the x-axis represents the usage as a percentage. The first group is as follows: Config with 49%, OpenAPI with 44%, Rest Client with 41%. The second group is as follows: Health with 38%, Metrics with 36%, JWT with 34%. The third group is as follows: Telemetry with 28%, Fault Tolerance with 27%. The fourth group is as follows: OpenTracing with 19%, Reactive Messaging with 19%, Context Propagation with 18%, GraphQL with 13%, LRA with 8%.&#34;/&gt; 
&lt;/figure&gt;

&lt;h2 id=&#34;developer-priorities-for-jakarta-ee--microprofile&#34;&gt;Developer Priorities for Jakarta EE &amp;amp; MicroProfile&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Adapting to Java SE innovations&lt;/strong&gt; (e.g., Virtual Threads, Project CRaC, Project Leyden).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Enhanced Kubernetes support&lt;/strong&gt; (e.g., integration with Kubernetes Secrets).&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Deprecating legacy features&lt;/strong&gt; like EJB, favoring &lt;strong&gt;CDI-based alternatives&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New features&lt;/strong&gt;, including:
&lt;ul&gt;
&lt;li&gt;Jakarta Messaging Lite for modern cloud use cases.&lt;/li&gt;
&lt;li&gt;CDI-based replacements for EJB &lt;strong&gt;Message-Driven Beans, &lt;code&gt;@Schedule&lt;/code&gt;, and &lt;code&gt;@RolesAllowed&lt;/code&gt;&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;A standard API for &lt;strong&gt;server management&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;other-key-insights&#34;&gt;Other Key Insights&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;The majority still use the &lt;strong&gt;Jakarta EE platform&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Most developers &lt;strong&gt;combine Jakarta EE and MicroProfile&lt;/strong&gt;, though some use Jakarta&lt;br&gt;
EE alone.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;JSON over HTTP (REST) dominates&lt;/strong&gt; API usage; XML and SOAP are declining, while&lt;br&gt;
OpenAPI is widely used.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The &lt;strong&gt;Jakarta EE Working Group&lt;/strong&gt; thanks all participants and will use these&lt;br&gt;
insights to guide future improvements.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>2024 Cloud Native Java Survey Findings</title>
      <link>https://redesign-2025--jakartaee.netlify.app/blogs/2024-cloud-native-java-survey-findings/</link>
      <pubDate>Tue, 11 Feb 2025 00:00:00 +0000</pubDate>
      
        <author>shabnam.mayel@eclipse-foundation.org (Shabnam Mayel)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/blogs/2024-cloud-native-java-survey-findings/</guid>
      <description>&lt;p&gt;In 2024, the Jakarta EE Working Group launched a brand new effort named the&lt;br&gt;
“Cloud Native Java Survey.” This blog, authored by the Jakarta EE Marketing&lt;br&gt;
Committee, summarizes the key insights from the survey.&lt;br&gt;
You may already be aware of the annual &lt;a href=&#34;https://outreach.eclipse.foundation/jakarta-ee-developer-survey-2024&#34;&gt;Jakarta EE Developer Survey&lt;/a&gt;,&lt;br&gt;
also organized by the working group. While the Developer Survey provides a&lt;br&gt;
broad view of the ecosystem and Java trends, the Cloud Native Java Survey dives&lt;br&gt;
deeper into technical details, encompassing both Jakarta EE and MicroProfile.&lt;br&gt;
The survey was conducted between July 11, 2024 and August 23, 2024.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/batch/2.1/changelog/</link>
      <pubDate>Fri, 12 Apr 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/batch/2.1/changelog/</guid>
      <description>Batch 2.1 Change Log</description>
    </item>
    
    <item>
      <title>Become a Sponsor | Jakarta EE</title>
      <link>https://redesign-2025--jakartaee.netlify.app/supporters/sponsor/</link>
      <pubDate>Wed, 03 Apr 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/supporters/sponsor/</guid>
      <description>&lt;section class=&#34;row padding-y-60 text-center&#34;&gt;
  &lt;div class=&#34;container&#34;&gt;
    &lt;div class=&#34;row&#34;&gt;
      &lt;div class=&#34;col-sm-18 col-sm-offset-4&#34;&gt;
			&lt;p class=&#34;font-medium&#34;&gt;Become a sponsor of the Jakarta EE Working Group and&lt;/p&gt;&lt;h2 class=&#34;big-text uppercase text-secondary&#34;&gt;Empower the Future of Enterprise Java&lt;/h2&gt;&lt;p class=&#34;section-featured-text text-primary&#34;&gt;Your organisation will play a pivotal role in shaping the future of open source enterprise Java and ensuring the continued growth and success of the global Java community.&lt;/p&gt;
        &lt;hr class=&#34;subsection-divider subsection-divider-darker margin-y-60&#34;&gt;
        &lt;p class=&#34;section-featured-text text-secondary font-italic big-text margin-bottom-40&#34;&gt;
          By joining our sponsorship program:
        &lt;/p&gt;
        &lt;div class=&#34;row&#34;&gt;
          &lt;div class=&#34;col-sm-8 margin-bottom-30&#34;&gt;
            &lt;div class=&#34;featured-section-cta-item match-height-item-by-row&#34;&gt;
              &lt;div class=&#34;featured-section-cta-item-img bg-primary&#34;&gt;
                &lt;img src=&#34;https://redesign-2025--jakartaee.netlify.app/supporters/sponsor/images/icons/support.svg&#34; alt=&#34;&#34;&gt;
              &lt;/div&gt;
              &lt;h3 class=&#34;heading-underline&#34;&gt;&lt;div class=&#34;small&#34;&gt;Your&lt;/div&gt;&lt;div&gt;Support&lt;/div&gt;&lt;/h3&gt;&lt;p class=&#34;featured-section-cta-item-body&#34;&gt;will help us maintain and expand our initiatives.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Concurrency Explained</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/concurrency-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/concurrency-explained/</guid>
      <description>&lt;p&gt;Application performance can make or break a user’s experience.&lt;br&gt;
Applications that provide a consistent experience and perform well are&lt;br&gt;
more likely to benefit user productivity. The Jakarta Concurrency&lt;br&gt;
specification targets application performance and usability by providing&lt;br&gt;
a standard API for developing concurrent application processes without&lt;br&gt;
compromising container integrity. It is not recommended to utilize&lt;br&gt;
traditional Java SE threads or timers within a Jakarta EE container&lt;br&gt;
because use of threads or timers may cause reliability issues and&lt;br&gt;
unexpected results. Jakarta Concurrency provides an API that does not&lt;br&gt;
intrude on container integrity, but rather, uses services that are&lt;br&gt;
managed by the container and matches the functionality provided by the&lt;br&gt;
Java SE Concurrency Utilities.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Contexts Dependency Injection Explained</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/contexts-dependency-injection-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/contexts-dependency-injection-explained/</guid>
      <description>&lt;p&gt;Jakarta Dependency Injection provides the ability to make&lt;br&gt;
use of contextual objects in an application with maximum&lt;br&gt;
reusability, testability, and maintainability. This&lt;br&gt;
specification provides a means for developers to easily&lt;br&gt;
obtain objects throughout classes within an application&lt;br&gt;
without the requirement to use constructors, factories, or&lt;br&gt;
service locators.&lt;/p&gt;
&lt;p&gt;Jakarta Contexts and Dependency Injection, Jakarta CDI for&lt;br&gt;
short, is one of the paramount specifications of the&lt;br&gt;
Jakarta EE Platform, as it contains a number of powerful&lt;br&gt;
complimentary services that are utilized across a majority&lt;br&gt;
of Jakarta EE applications. Jakarta CDI has been known as&lt;br&gt;
the &amp;ldquo;glue&amp;rdquo; for the Jakarta EE Platform because one of the&lt;br&gt;
most significant features is the enablement of contextual&lt;br&gt;
objects to be made available for use throughout other&lt;br&gt;
classes and views within an application. The specification&lt;br&gt;
makes use of the Jakarta Dependency Injection specification&lt;br&gt;
to provide this capability, but Jakarta CDI also provides a&lt;br&gt;
number of other features beyond dependency injection&lt;br&gt;
including scope assignment, generation of preconfigured&lt;br&gt;
objects, qualification, initiating code when events occur,&lt;br&gt;
to mention a few.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Platform</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/jakarta-ee-platform/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/jakarta-ee-platform/</guid>
      <description>&lt;p&gt;&lt;strong&gt;The Jakarta EE Platform enables developers to produce&lt;br&gt;
lightweight, cloud native applications while providing&lt;br&gt;
maximum developer productivity&lt;/strong&gt;. Now featuring multiple&lt;br&gt;
profiles geared towards producing microservices or full&lt;br&gt;
stack applications, the Platform provides flexibility for&lt;br&gt;
developing applications of all sizes. &lt;strong&gt;The Platform is&lt;br&gt;
composed of a number of specifications, each targeting&lt;br&gt;
specific areas in application architecture&lt;/strong&gt;. This modular&lt;br&gt;
approach allows the specifications to evolve under&lt;br&gt;
different expert groups and timelines, while the platform&lt;br&gt;
enables each to work together in harmony.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Persistence Explained</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/persistence-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/persistence-explained/</guid>
      <description>&lt;p&gt;Enterprise applications typically require persistence for data storage. The&lt;br&gt;
specification is foundational for many technologies since relational databases&lt;br&gt;
are widely used within the industry. The Jakarta Persistence specification,&lt;br&gt;
also known as Jakarta Persistence API (JPA), encompasses a number of APIs that&lt;br&gt;
facilitate the creation, reading, updating, and deletion of data within data&lt;br&gt;
stores. The specification provides an Entity Manager API which is used to&lt;br&gt;
facilitate the lifecycle of entities within an application. The &lt;code&gt;Query&lt;/code&gt; and&lt;br&gt;
&lt;code&gt;TypedQuery&lt;/code&gt; APIs are used to retrieve data utilizing both static and dynamic&lt;br&gt;
queries. The Metamodel API enables the ability to obtain metadata regarding&lt;br&gt;
managed entities and persistence objects. Lastly, the Criteria API provides a&lt;br&gt;
means for defining queries through the use of object based query objects to&lt;br&gt;
perform strongly-typed queries.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta RESTful Web Services Explained</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/restful-web-services-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/restful-web-services-explained/</guid>
      <description>&lt;p&gt;Jakarta REST is the solution for development of building Representational State&lt;br&gt;
Transfer web services on the Jakarta EE Platform. The specification is easy to&lt;br&gt;
learn, and it enables one to construct powerful REST APIs and it also includes&lt;br&gt;
APIs for working with web services as a client. As such, this specification&lt;br&gt;
is key to the development of microservices and cloud based applications, and it&lt;br&gt;
is part of the Jakarta EE Web Profile as well as the full platform.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Security, Jakarta Authorization, and Jakarta Authentication Explained</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/security-authorization-and-authentication-explained/</link>
      <pubDate>Tue, 12 Mar 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/security-authorization-and-authentication-explained/</guid>
      <description>&lt;p&gt;Security is a major component of application development.  Jakarta EE provides&lt;br&gt;
the robust Jakarta Security specification that when paired with the Jakarta&lt;br&gt;
Authentication and Jakarta Authorization specifications, provides APIs that&lt;br&gt;
deliver end-to-end security. There are a large number of application processes&lt;br&gt;
that require security measures, and these specifications provide the ability to&lt;br&gt;
do so in a straightforward manner using annotations and minimal XML&lt;br&gt;
configurations.  Jakarta EE compliant containers and deployment environments&lt;br&gt;
adhere to the constructs of the Authentication and Authorization policies to&lt;br&gt;
ensure that applications can be secured in a standard way and deployed across a&lt;br&gt;
number of different environments.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta Servlet, Jakarta Faces and Jakarta Server Pages Explained</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/servlet-faces-and-server-pages-explained/</link>
      <pubDate>Thu, 22 Feb 2024 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/specification-guides/servlet-faces-and-server-pages-explained/</guid>
      <description>&lt;p&gt;The Jakarta EE Platform offers a number of APIs that can be used to create web&lt;br&gt;
based user interfaces. The most mature and perhaps most well known is the&lt;br&gt;
Jakarta Servlet specification. Jakarta Servlet was first released in 1996, and&lt;br&gt;
it enables Java developers to create web pages containing dynamic web content&lt;br&gt;
using pure Java. The specification has changed much over the years and it is&lt;br&gt;
able to interact with modern technologies and comply with the modern era of web&lt;br&gt;
technologies with features such as HTTP/2. Jakarta Server Pages (JSP) was&lt;br&gt;
first released in 1999, and it enables developers to create web based user&lt;br&gt;
interfaces using a mixture of HTML markup and special Jakarta Servlet tags.&lt;br&gt;
JSP enables easy creation of dynamic web views, and it has also made great&lt;br&gt;
progressions over the years to position it for standard model-view-controller&lt;br&gt;
development. Model-View-Controller development specifies clear separation of&lt;br&gt;
view code from business logic, and in the early years of JSP it was common to&lt;br&gt;
see business logic intermixed with HTML code. To that end, Jakarta Faces was&lt;br&gt;
initially released in 2004, and it provides the ability to develop web based&lt;br&gt;
user interfaces with XML for the view and a corresponding Java class to contain&lt;br&gt;
the business logic for the view. This specification has adapted over the years&lt;br&gt;
to continue as a relevant web based user interface API for modern times.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Specification Versioning, Change, and Deprecation Process 1.0</title>
      <link>https://redesign-2025--jakartaee.netlify.app/committees/specification/versioning/</link>
      <pubDate>Tue, 10 Oct 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/committees/specification/versioning/</guid>
      <description>&lt;h2 id=&#34;content&#34;&gt;Content&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#goals&#34;&gt;Goals&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#definitions&#34;&gt;Definitions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#allowedchanges&#34;&gt;Allowed Changes, Deprecation and Versioning&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#general&#34;&gt;General Rules&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#api&#34;&gt;API&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#behaviour&#34;&gt;Behaviour&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#component&#34;&gt;Component Feature&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#platform&#34;&gt;Platform Feature&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;goals&#34;&gt;Goals&lt;/h2&gt;
&lt;p&gt;It is the desire of the Jakarta EE specification projects to be able to make backwards incompatible changes to new&lt;br&gt;
versions of Jakarta EE specifications.  The goal of this document is to enable that outcome while also providing&lt;br&gt;
guidance so that users can be aware of when backwards incompatible changes have occurred.  The high-level framework in&lt;br&gt;
which this document is written:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>How to Start with Servlets Using Jakarta EE 10</title>
      <link>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/how-to-start-with-servlets/</link>
      <pubDate>Fri, 22 Sep 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/learn/starter-guides/how-to-start-with-servlets/</guid>
      <description>&lt;p&gt;This guide aims to walk you through the process of building a simple Servlet&lt;br&gt;
application using &lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/specifications/servlet/6.0/&#34;&gt;Jakarta Servlet&lt;/a&gt;. We&amp;rsquo;ll start&lt;br&gt;
by outlining what we aim to achieve and then step-by-step guide you through&lt;br&gt;
setting up your environment, writing code, and deploying the Servlet&lt;br&gt;
application. If you&amp;rsquo;re new to Servlets or Jakarta EE, this guide should be a&lt;br&gt;
great starting point.&lt;/p&gt;
&lt;p&gt;We&amp;rsquo;ll develop an application that accomplishes the following:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Presents a form asking the user to select their coffee preferences (e.g.,&lt;br&gt;
black, latte, cold brew).&lt;/li&gt;
&lt;li&gt;Stores these preferences in a session.&lt;/li&gt;
&lt;li&gt;Dynamically generates a &amp;ldquo;Coffee Dashboard,&amp;rdquo; displaying personalized coffee&lt;br&gt;
recommendations.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;OK, now that we have specified our requirements, you will need to follow these&lt;br&gt;
steps:&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Unlocking Potential: Persuading Your Employer to Support Your Contribution to Jakarta EE</title>
      <link>https://redesign-2025--jakartaee.netlify.app/blogs/unlocking-potential-persuading-your-employer-to-support-your-contribution-to-jakarta-ee/</link>
      <pubDate>Thu, 24 Aug 2023 12:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/blogs/unlocking-potential-persuading-your-employer-to-support-your-contribution-to-jakarta-ee/</guid>
      <description>In this blog post, we will explore the numerous benefits that arise when employees are encouraged to contribute to Jakarta EE as part of their normal work activities. These compelling arguments will help you convince your employer of the value it brings to your organisation while respecting the demands of your everyday work.</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/jsonp/2.1/changelog/</link>
      <pubDate>Thu, 11 May 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/jsonp/2.1/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/mail/2.1/changelog/</link>
      <pubDate>Fri, 05 May 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/mail/2.1/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/activation/2.1/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/activation/2.1/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/jsonb/3.0/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/jsonb/3.0/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/soap-attachments/3.0/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/soap-attachments/3.0/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/xml-binding/4.0/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/xml-binding/4.0/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/xml-web-services/4.0/changelog/</link>
      <pubDate>Sat, 29 Apr 2023 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/xml-web-services/4.0/changelog/</guid>
      <description>Release for Jakarta EE 10</description>
    </item>
    
    <item>
      <title>Why Jakarta EE?</title>
      <link>https://redesign-2025--jakartaee.netlify.app/about/why-jakarta-ee/</link>
      <pubDate>Thu, 20 Oct 2022 14:49:08 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/about/why-jakarta-ee/</guid>
      <description>&lt;nav class=&#34;table-of-contents margin-bottom-60&#34;&gt;
    &lt;ul class=&#34;table-of-contents-item-list list-unstyled&#34;&gt;

            &lt;li class=&#34;table-of-contents-item&#34;&gt;
                &lt;a class=&#34;h4 link-unstyled&#34; title=&#34;Jump to section Jakarta EE is the Standard&#34; href=&#34;#standard&#34;&gt;
                    &lt;span class=&#34;text-primary big-text italic&#34;&gt;JAKARTA EE&lt;/span&gt;
                    &lt;span class=&#34;text-secondary big-text italic br&#34;&gt;IS THE STANDARD&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;
            
            &lt;li class=&#34;table-of-contents-item&#34;&gt;
                &lt;a class=&#34;h4 link-unstyled&#34; title=&#34;Jump to section Jakarta EE is Ubiquitous&#34; href=&#34;#ubiquitous&#34;&gt;
                    &lt;span class=&#34;text-primary big-text italic&#34;&gt;JAKARTA EE&lt;/span&gt;
                    &lt;span class=&#34;text-secondary big-text italic br&#34;&gt;IS UBIQUITOUS&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;
            
            &lt;li class=&#34;table-of-contents-item&#34;&gt;
                &lt;a class=&#34;h4 link-unstyled&#34; title=&#34;Jump to section Jakarta EE is Continuation&#34; href=&#34;#continuation&#34;&gt;
                    &lt;span class=&#34;text-primary big-text italic&#34;&gt;JAKARTA EE&lt;/span&gt;
                    &lt;span class=&#34;text-secondary big-text italic br&#34;&gt;IS CONTINUATION&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;
            
            &lt;li class=&#34;table-of-contents-item&#34;&gt;
                &lt;a class=&#34;h4 link-unstyled&#34; title=&#34;Jump to section Jakarta EE is the Innovative&#34; href=&#34;#innovative&#34;&gt;
                    &lt;span class=&#34;text-primary big-text italic&#34;&gt;JAKARTA EE&lt;/span&gt;
                    &lt;span class=&#34;text-secondary big-text italic br&#34;&gt;IS INNOVATIVE&lt;/span&gt;
                &lt;/a&gt;
            &lt;/li&gt;
    &lt;/ul&gt;
&lt;/nav&gt;















    
    


&lt;section id=&#34;standard&#34; class=&#34;split-section row  &#34;&gt;
    &lt;div class=&#34;split-section-inner-container equal-height&#34;&gt;
        &lt;div class=&#34;split-section-image-wrapper col-md-12 padding-0 col-md-push-12 graph-pattern graph-pattern-standard&#34;&gt;
            &lt;img class=&#34;split-section-image img img-responsive&#34; src=&#34;images/standard-image.jpg&#34; alt=&#34;&#34; loading=&#34;lazy&#34; /&gt;        
        &lt;/div&gt;
        &lt;div class=&#34;split-section-content-container col-md-12 col-md-pull-12&#34;&gt;
            &lt;div class=&#34;split-section-content&#34;&gt;
                &lt;div class=&#34;split-section-title-container&#34;&gt;
                    &lt;div class=&#34;split-section-title-icon-wrapper&#34;&gt;
                        &lt;img class=&#34;split-section-title-icon&#34; src=&#34;images/icons/standard-icon.svg&#34; alt=&#34;&#34; /&gt;
                    &lt;/div&gt;
                    &lt;h2 class=&#34;split-section-title big-text&#34;&gt;
                        &lt;span class=&#34;text-primary&#34;&gt;JAKARTA EE&lt;/span&gt;
                        &lt;span class=&#34;text-secondary br&#34;&gt;IS THE STANDARD&lt;/span&gt;
                    &lt;/h2&gt;
                &lt;/div&gt;
                &lt;div class=&#34;split-section-content-body&#34;&gt;
&lt;p&gt;Jakarta EE is the standard, a set of &lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/specifications/&#34;&gt;specifications&lt;/a&gt; for&lt;br&gt;
enterprise Java application development. It is well-understood and widely&lt;br&gt;
accepted because of its stability, portability, and backwards compatibility.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Specification Process</title>
      <link>https://redesign-2025--jakartaee.netlify.app/about/jesp/</link>
      <pubDate>Wed, 31 Aug 2022 13:00:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/about/jesp/</guid>
      <description>&lt;p&gt;The Jakarta EE Specification Process (JESP) is concerned with the Specification Process as it applies to Specification Projects operating under the purview of the Jakarta EE Working Group.&lt;/p&gt;
&lt;p&gt;The Jakarta EE Specification Committee hereby adopts the &lt;a href=&#34;https://www.eclipse.org/projects/efsp?version=1.3&#34;&gt;Eclipse Foundation Specification Process v1.3&lt;/a&gt; (EFSP) as the Jakarta EE Specification Process with the following modifications:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Any modification to or revision of this Jakarta EE Specification Process, including the adoption of a new version of the EFSP, must be approved by a Super-majority of the Specification Committee, including a Super-majority of the Strategic Members of the Jakarta EE Working Group, in addition to any other ballot requirements set forth in the EFSP.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>javax to jakarta namespace ecosystem progress</title>
      <link>https://redesign-2025--jakartaee.netlify.app/blogs/javax-jakartaee-namespace-ecosystem-progress/</link>
      <pubDate>Wed, 31 Aug 2022 09:00:00 +0000</pubDate>
      
        <author>martijn@londonjavacommunity.co.uk (Martijn Verburg)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/blogs/javax-jakartaee-namespace-ecosystem-progress/</guid>
      <description>The Jakarta EE ecosystem has been hard at work transitioning various libraries, framework, servers and tools from the javax namespace to the jakarta.ee namespace. This work is essentially complete with the upcoming release of Jakarta EE 10. JakartaEE developers have a wide range of options in each category, providing great choices!</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/annotations/2.1/changelog/</link>
      <pubDate>Wed, 15 Jun 2022 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/annotations/2.1/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>The 2022 Jakarta EE Developer Survey is Now Open!</title>
      <link>https://redesign-2025--jakartaee.netlify.app/blogs/the-2022-jakarta-ee-developer-survey-is-now-open/</link>
      <pubDate>Mon, 21 Mar 2022 19:00:00 +0000</pubDate>
      
        <author>shabnam.mayel@eclipse-foundation.org (Shabnam Mayel)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/blogs/the-2022-jakarta-ee-developer-survey-is-now-open/</guid>
      <description>Completing the 2022 Jakarta EE Developer Survey takes less than 6 minutes of your time. But your input is extremely important.</description>
    </item>
    
    <item>
      <title>Help Shape the Future of Cloud Native Java</title>
      <link>https://redesign-2025--jakartaee.netlify.app/community/get-involved/</link>
      <pubDate>Fri, 04 Mar 2022 09:00:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/community/get-involved/</guid>
      <description>&lt;div class=&#34;get-involved-content-prefix row&#34;&gt;
    &lt;div class=&#34;container&#34;&gt;
        &lt;div class=&#34;col-sm-24&#34;&gt;
            &lt;h2 class=&#34;big-text-secondary&#34;&gt;Get Involved in Jakarta EE!&lt;/h2&gt;
            &lt;p&gt;To get involved in any Jakarta EE project or initiative, start by &lt;a href=&#34;https://accounts.eclipse.org/user/register&#34;&gt;creating an Eclipse Foundation account&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Once you have an account, you can choose any of the methods below to participate.&lt;/p&gt;
        &lt;/div&gt;

    &lt;/div&gt;
&lt;/div&gt;

&lt;div class=&#34;get-involved-blocks&#34;&gt;
    &lt;div class=&#34;container&#34;&gt;
        &lt;div class=&#34;card-container col-xs-24&#34;&gt;
            &lt;div class=&#34;card-panel panel panel-default horizontal-card&#34;&gt;
                &lt;div class=&#34;panel-heading&#34; aria-hidden=&#34;true&#34;&gt;
                    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/get-involved/join-conversation.jpg&#34; alt=&#34;Join the Conversation&#34;&gt;
                &lt;/div&gt;
                &lt;div class=&#34;panel-body&#34;&gt;
                    &lt;h3 class=&#34;big-text margin-top-30&#34;&gt;Join the Conversation&lt;/h3&gt;
                    &lt;p&gt;Join our communication channels to learn about the latest community initiatives and determine how you can get involved.&lt;/p&gt;
                    &lt;div class=&#34;row&#34;&gt;
                        &lt;div class=&#34;col-sm-12&#34;&gt;
                            &lt;ul class=&#34;list-unstyled&#34;&gt;
                                &lt;li class=&#34;margin-bottom-15&#34;&gt;&lt;img class=&#34;get-involved-orange-icon&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/get-involved/icons/envelope.svg&#34; alt=&#34;Envelope icon&#34;&gt;&lt;a href=&#34;https://jakarta.ee/connect/&#34;&gt;Join the conversation on email&lt;/a&gt;&lt;/li&gt;
                                &lt;li&gt;&lt;img class=&#34;get-involved-orange-icon&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/get-involved/icons/slack.svg&#34; alt=&#34;Slack icon&#34;&gt;&lt;a href=&#34;https://eclipsefoundationhq.slack.com/?redir=%2Fssb%2Fredirect&#34;&gt;Join us on Slack&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                        &lt;div class=&#34;col-sm-12&#34;&gt;
                            &lt;ul class=&#34;list-unstyled&#34;&gt;
                                &lt;li&gt;&lt;img class=&#34;get-involved-orange-icon&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/get-involved/icons/social-media.svg&#34; alt=&#34;Social Media icon&#34;&gt;&lt;a href=&#34;#social-media&#34;&gt;Join us on Social Media&lt;/a&gt;&lt;/li&gt;
                            &lt;/ul&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/div&gt;

        &lt;div class=&#34;card-container col-xs-24&#34;&gt;
            &lt;div class=&#34;card-panel panel panel-default horizontal-card&#34;&gt;
                &lt;div class=&#34;panel-heading&#34; aria-hidden=&#34;true&#34;&gt;
                    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/get-involved/how-to-contribute.jpg&#34; alt=&#34;How to Contribute&#34;&gt;
                &lt;/div&gt;
                &lt;div class=&#34;panel-body&#34;&gt;
                    &lt;h3 class=&#34;big-text margin-top-30&#34;&gt;How to Contribute&lt;/h3&gt;
                    &lt;p&gt;Select a &lt;a href=&#34;https://github.com/eclipse-ee4j&#34;&gt;Jakarta EE project of interest&lt;/a&gt;, join the project&amp;rsquo;s mailing list and start communicating with the team.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Fulfilling the Vision for Open Source, Cloud Native Java</title>
      <link>https://redesign-2025--jakartaee.netlify.app/resources/ebook/cnj/</link>
      <pubDate>Wed, 16 Feb 2022 09:00:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/resources/ebook/cnj/</guid>
      <description>As Java industry leaders, developers, and enterprises join forces to evolve Jakarta EE for enterprise workloads in the cloud, we explore what cloud native Java really means, why it matters so much to so many people, and where it’s headed.</description>
    </item>
    
    <item>
      <title>Jakarta EE TCK Process 1.4.1</title>
      <link>https://redesign-2025--jakartaee.netlify.app/committees/specification/tckprocess/</link>
      <pubDate>Mon, 07 Feb 2022 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/committees/specification/tckprocess/</guid>
      <description>&lt;p&gt;Specification Projects under the Eclipse Foundation Specification&lt;br&gt;
Process MUST produce a Technology Compatibility Kit (TCK) that delivers&lt;br&gt;
on the promise of enabling multiple compatible implementations.&lt;/p&gt;
&lt;p&gt;This document defines:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Materials a TCK MUST possess to be considered suitable for&lt;br&gt;
delivering portability&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Ratifying a Final TCK&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Process for challenging tests and how these challenges are resolved&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Means of excluding released TCK tests from certification&lt;br&gt;
requirements&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Policy on improving TCK tests for released specifications&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/jsonp/2.0/changelog/</link>
      <pubDate>Fri, 26 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/jsonp/2.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/mail/2.0/changelog/</link>
      <pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/mail/2.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/soap-attachments/2.0/changelog/</link>
      <pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/soap-attachments/2.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/xml-binding/3.0/changelog/</link>
      <pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/xml-binding/3.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/xml-web-services/3.0/changelog/</link>
      <pubDate>Sun, 21 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/xml-web-services/3.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Change Log</title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/activation/2.0/changelog/</link>
      <pubDate>Wed, 17 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/activation/2.0/changelog/</guid>
      <description>Release for Jakarta EE 9</description>
    </item>
    
    <item>
      <title>Jakarta EE Compatible Implementations and Compatible Products</title>
      <link>https://redesign-2025--jakartaee.netlify.app/committees/specification/compatibility/</link>
      <pubDate>Thu, 11 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/committees/specification/compatibility/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Jakarta EE&lt;/strong&gt; is a set of open &lt;a href=&#34;https://jakarta.ee/specifications/&#34; title=&#34;Jakarta EE Specifications&#34;&gt;specifications&lt;/a&gt; used for enterprise Java application development. It is a continuation of Java EE technology that gathers the wide community of Java developers interested in advancing the specifications for future cloud native Java enterprise applications. Each specification release includes its respective Technology Compatibility Kit (TCK). You can find a link to the TCK on the appropriate specification release page, for example see &lt;a href=&#34;https://jakarta.ee/specifications/platform/9/&#34;&gt;Jakarta EE Platform 9.0&lt;/a&gt; or in the case of individual specification see &lt;a href=&#34;https://jakarta.ee/specifications/authentication/2.0/&#34;&gt;Jakarta Authentication 2.0&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Guide to the Jakarta EE Specification Process</title>
      <link>https://redesign-2025--jakartaee.netlify.app/committees/specification/guide/</link>
      <pubDate>Thu, 04 Mar 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/committees/specification/guide/</guid>
      <description>&lt;h2 id=&#34;content&#34;&gt;Content&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;#intro&#34;&gt;Introduction&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#creation&#34;&gt;Creation Review&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#plan&#34;&gt;Plan Review&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#release&#34;&gt;Release Review&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#service&#34;&gt;Service Release&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;#progress&#34;&gt;Progress Review&lt;/a&gt; &lt;em&gt;(optional)&lt;/em&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;intro&#34;&gt;Introduction&lt;/h2&gt;
&lt;p&gt;This article is a self-contained, step-by-step, practical guide to help developers navigate the Jakarta EE Specification Process (&lt;a href=&#34;https://jakarta.ee/about/jesp/&#34;&gt;JESP&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;It is meant as a helpful tool, so &lt;strong&gt;if in doubt, always refer to the &lt;a href=&#34;https://jakarta.ee/about/jesp/&#34;&gt;JESP&lt;/a&gt; for completeness&lt;/strong&gt;. Contact the &lt;a href=&#34;mailto:jakarta.ee-spec@eclipse.org&#34;&gt;Specification Committee&lt;/a&gt; if you have any questions or comments about anything related to the development of Jakarta EE Specifications. The &lt;a href=&#34;https://jakarta.ee/about/jesp/&#34;&gt;JESP&lt;/a&gt; is an adaptation of the Eclipse Foundation Specification Process (&lt;a href=&#34;https://www.eclipse.org/projects/efsp/&#34;&gt;EFSP&lt;/a&gt;), which is itself an adaptation of the Eclipse Foundation Development Process (&lt;a href=&#34;https://www.eclipse.org/projects/dev_process/&#34;&gt;EDP&lt;/a&gt;).&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Specification Committee Operation</title>
      <link>https://redesign-2025--jakartaee.netlify.app/committees/specification/operations/</link>
      <pubDate>Wed, 13 Jan 2021 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/committees/specification/operations/</guid>
      <description>&lt;p&gt;This document describes the practices of the Jakarta EE Specification&lt;br&gt;
Committee.&lt;/p&gt;
&lt;p&gt;Changes to this document must be approved by a simple majority vote of&lt;br&gt;
the Jakarta EE specification committee, conducted via the public Jakarta&lt;br&gt;
EE Specification Committee (&lt;a href=&#34;mailto:jakarta.ee-spec@eclipse.org&#34;&gt;jakarta.ee-spec@eclipse.org&lt;/a&gt;) mailing list.&lt;/p&gt;
&lt;p&gt;This is a public document.&lt;/p&gt;
&lt;h2 id=&#34;specification_committee&#34;&gt;Specification Committee&lt;/h2&gt;
&lt;p&gt;The Jakarta EE Specification Committee is responsible for implementing&lt;br&gt;
the Eclipse Foundation Specification Process (EFSP) for all&lt;br&gt;
Specification Projects (as that term is defined by the EFSP) under the&lt;br&gt;
purview of the Jakarta EE Working Group. This includes the adaptation of&lt;br&gt;
the EFSP for Jakarta which is referred to as the Jakarta EE&lt;br&gt;
Specification Process (JESP).&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Proper use of the Jakarta® Brand by Eclipse Projects</title>
      <link>https://redesign-2025--jakartaee.netlify.app/committees/steering/brand_use_by_projects/</link>
      <pubDate>Tue, 03 Mar 2020 13:10:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/committees/steering/brand_use_by_projects/</guid>
      <description>&lt;p&gt;A critical aspect of managing a brand is avoiding confusion as to what the brand represents, what expectations should we expect to be met when something is labeled with that brand. It is important to clearly delineate what we mean when we label something “Jakarta”, that is, when we use “Jakarta” as a modifier/adjective to an object/noun (e.g., “Jakarta® Faces Specification”),  and managing how it is used in the project space is part of this. Careful use of the name will help the community better understand what is directly represented by the Jakarta brand and what is not.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Adopt a Spec</title>
      <link>https://redesign-2025--jakartaee.netlify.app/community/adopt-a-spec/</link>
      <pubDate>Sat, 01 Feb 2020 16:09:45 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/community/adopt-a-spec/</guid>
      <description>&lt;p&gt;This program is intended to encourage JUG leaders and members to get involved by adopting a Jakarta EE Specification. The objective is to increase developer level participation in the evolution of the Jakarta EE Specification.&lt;/p&gt;


  
    
  
    
  

  
    
  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  

  
    
  
    
  
    
  
    
  

  
    
  
    
  
    
  

  
    
  
    
  
    
  

  
    
  
    
  

  
    
  

  
    
  

  
    
  

  
    
  



&lt;h2 id=&#34;adopters&#34; class=&#34;margin-bottom-20&#34;&gt;Adopters&lt;/h2&gt;
&lt;ul class=&#34;list-inline&#34;&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://gsjug.org&#34; title=&#34;Garden State Java User Group homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/spec_adopters/duke-gsjug-twitter.png&#34; alt=&#34;Garden State Java User Group logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://www.jugistanbul.org/&#34; title=&#34;Istanbul Java User Group homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/spec_adopters/jugistanbul.png&#34; alt=&#34;Istanbul Java User Group logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://www.meetup.com/Javaforum-Malmo/&#34; title=&#34;Javaforum Malmø homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/spec_adopters/java_forum_malmo.png&#34; alt=&#34;Javaforum Malmø logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://jugpe.com.br/&#34; title=&#34;JUG-PE homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/spec_adopters/jugpe.png&#34; alt=&#34;JUG-PE logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://www.meetup.com/MadrasJUG/&#34; title=&#34;Madras JUG homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/spec_adopters/mjug.svg&#34; alt=&#34;Madras JUG logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://soujava.org.br/&#34; title=&#34;SouJava homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/spec_adopters/soujava.png&#34; alt=&#34;SouJava logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;https://twitter.com/TurkeyJBUG/&#34; title=&#34;Turkey JBoss User Group homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/spec_adopters/turkeyjboss.png&#34; alt=&#34;Turkey JBoss User Group logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
    &lt;li&gt;
      &lt;a href=&#34;http://www.TurkeyJUG.com/&#34; title=&#34;Turkey JUG homepage&#34; target=&#34;_blank&#34; &gt;
        &lt;img class=&#34;adopter-logo&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/images/spec_adopters/turkeyjug.png&#34; alt=&#34;Turkey JUG logo&#34; /&gt;
      &lt;/a&gt;
    &lt;/li&gt;
  
&lt;/ul&gt;

&lt;h2 id=&#34;how-jug-leaders-can-help&#34;&gt;How JUG leaders can help:&lt;/h2&gt;
&lt;p&gt;Ensure that the topic of the adopted Jakarta EE Specification is consistently discussed, e.g. dedicate a portion of the existing JUG meetups to the discussions related to the adopted Specification, arrange monthly calls with all representatives of JUGs that are running the program in their groups.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Oracle/JCP Acronym Guidelines</title>
      <link>https://redesign-2025--jakartaee.netlify.app/legal/acronym_guidelines/</link>
      <pubDate>Wed, 26 Jun 2019 16:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/legal/acronym_guidelines/</guid>
      <description>&lt;p&gt;&lt;em&gt;Guidelines for the use of existing Oracle/JCP Acronyms. Supplement to the Eclipse Foundation &lt;a href=&#34;https://jakarta.ee/legal/trademark_guidelines/&#34;&gt;Guidelines for Eclipse Logos &amp;amp; Trademarks Policy&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Version 1.0 - June 26, 2019&lt;/p&gt;
&lt;p&gt;The goal of these guidelines is to avoid confusion and ensure that the developer community can easily identify whether a Jakarta EE project, specification, test suite, or other related item originates from Oracle/JCP or from the Eclipse/Jakarta EE process.&lt;/p&gt;
&lt;p&gt;The list of Oracle/JCP acronyms appears at the bottom of this document.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Contribute</title>
      <link>https://redesign-2025--jakartaee.netlify.app/contribute/</link>
      <pubDate>Tue, 02 Apr 2019 11:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/contribute/</guid>
      <description>&lt;!-- Why contribute to Jakarta EE --&gt;
&lt;div class=&#34;row contribute-why-section padding-bottom-60&#34;&gt;
  &lt;div class=&#34;container&#34;&gt;
    &lt;div class=&#34;row&#34;&gt;
      &lt;div class=&#34;col-sm-24&#34;&gt;
        &lt;h1 class=&#34;big-text&#34; id=&#34;why-contribute&#34;&gt;
          Why contribute to Jakarta EE
        &lt;/h1&gt;
      &lt;/div&gt;
      &lt;div class=&#34;col-sm-12 contribute-featured-items&#34;&gt;
        &lt;div class=&#34;featured-section-cta-item match-height-item-by-row&#34;&gt;
          &lt;div class=&#34;featured-section-cta-item-img&#34;&gt;
            &lt;img src=&#34;images/icon-network.svg&#34; alt=&#34;Get Informed&#34; /&gt;
          &lt;/div&gt;
          &lt;h2 class=&#34;heading-underline&#34;&gt;
            Grow your network and opportunities.
          &lt;/h2&gt;
          &lt;p&gt;
            Open source is one of the best ways to meet and collaborate with
            Java mentors, community experts, and future employers. Many careers
            have taken off because someone’s contributions caught the proper
            attention.
          &lt;/p&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;div class=&#34;col-sm-12 contribute-featured-items&#34;&gt;
        &lt;div class=&#34;featured-section-cta-item match-height-item-by-row&#34;&gt;
          &lt;div class=&#34;featured-section-cta-item-img&#34;&gt;
            &lt;img src=&#34;images/icon-arrow.svg&#34; alt=&#34;Get Informed&#34; /&gt;
          &lt;/div&gt;
          &lt;h2 class=&#34;heading-underline&#34;&gt;Future-proof your career.&lt;/h2&gt;
          &lt;p&gt;
            Jakarta EE is not “old Java EE.” It’s actively evolving to meet
            cloud native demands, including microservices, containers, and
            Kubernetes integration. Contributing means staying ahead of the
            curve, learning directly from experts, and keeping your skills
            sharp.
          &lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Mentorship</title>
      <link>https://redesign-2025--jakartaee.netlify.app/mentorship/</link>
      <pubDate>Tue, 02 Apr 2019 11:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/mentorship/</guid>
      <description>&lt;!-- Page description: Mentorship Page --&gt;

&lt;section class=&#34;row padding-bottom-50&#34; aria-labelledby=&#34;intro-heading&#34;&gt;
  &lt;h1 id=&#34;intro-heading&#34; class=&#34;sr-only&#34;&gt;Jakarta EE Community Mentor Program Introduction&lt;/h1&gt;
  &lt;div class=&#34;col-sm-12 match-height-item-by-row vertical-align&#34;&gt;
    &lt;p&gt;
      The power of Jakarta EE goes far beyond its specifications and code, it
      relies on contributors.
      &lt;b&gt;The Jakarta EE Community Mentor Program&lt;/b&gt; helps new contributors get
      started quickly and confidently. Open source can be complex, but you don&#39;t
      have to navigate it alone. A mentor shares knowledge, avoids common
      pitfalls, and guides you step by step, from your first contribution to
      making a meaningful impact.
    &lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Mailing Lists</title>
      <link>https://redesign-2025--jakartaee.netlify.app/connect/mailing-lists/</link>
      <pubDate>Sun, 03 Mar 2019 10:00:00 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/connect/mailing-lists/</guid>
      <description>&lt;table&gt;
&lt;tbody&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-community&#34;&gt;Jakarta EE Community&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for updates &amp; connecting with everyone in the ecosystem&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-wg&#34;&gt;Jakarta EE Working Group&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for discussions on topics relevant to Jakarta EE Working Group Members; tackling tasks &amp; working with each other&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartaee-platform-dev&#34;&gt;Jakarta EE Platform&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions on topics related to a platform for hosting Jakarta EE Applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartaee-tck-dev&#34;&gt;Jakarta EE Technology Compatibility Kits&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions on Jakarta EE Technology Compatibility Kits&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-spec&#34;&gt;Jakarta EE Specifications&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for discussions on evolution of Jakarta EE specifications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartaee-spec-project-leads&#34;&gt;JakartaEE Spec Project Leadership discussions&lt;/a&gt;&lt;/td&gt;&lt;td&gt;JakartaEE Spec Project Leadership discussions&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-marketing&#34;&gt;Jakarta EE Marketing&lt;/a&gt;&lt;/td&gt;&lt;td&gt;This list is used for discussions on marketing, collateral, branding, devrel, jakartaone and activities related to enhancing the Jakarta EE brand with community collaboration.&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartaee-examples-dev&#34;&gt;Jakarta EE Examples&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for discussions on documentation, samples, tutorials of APIs&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jaf-dev&#34;&gt;Jakarta Activation&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to standardizing services for MIME type data Access&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/ca-dev&#34;&gt;Jakarta Annotations&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to declarative style annotations for common semantic concepts&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jaspic-dev&#34;&gt;Jakarta Authentication&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to low-level container SPI for authentication mechanisms&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jacc-dev&#34;&gt;Jakarta Authorization&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to low-level SPI for authorization modules, which are repositories of permissions&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakartabatch-dev&#34;&gt;Jakarta Batch&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to API plus an XML-based batch job specification language&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/bean-validation-dev&#34;&gt;Jakarta Bean Validation&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to object-level constraint declaration and validation facility.&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/cu-dev&#34;&gt;Jakarta Concurrency&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to API for application-level concurrency that integrates with the container&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/config-dev&#34;&gt;Jakarta Config&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Jakarta Config project developer discussions&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jca-dev&#34;&gt;Jakarta Connectors&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to the architecture connecting applications to enterprise info systems&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/cdi-dev&#34;&gt;Jakarta Context and Dependency Injection&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to declarative dependency injection and supportive services&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/ejb-dev&#34;&gt;Jakarta Enterprise Beans&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to deployment APIs for assembled Jakarta EE applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/el-dev&#34;&gt;Jakarta Expression Language&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to expression language for Java applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/interceptors-dev&#34;&gt;Jakarta Interceptors&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to defining means of interposing on business methods&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jsonb-dev&#34;&gt;Jakarta JSON Binding&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to binding framework for converting POJO to/from JSON docs&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jsonp-dev&#34;&gt;Jakarta JSON Processing&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to parsing, generating, transforming and query JSON docs&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/mail-dev&#34;&gt;Jakarta Mail&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to a framework to build mail and messaging applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/messaging-dev&#34;&gt;Jakarta Messaging&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to Jakarta Messaging. Messaging via loosely coupled reliable async services&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/mvc-dev&#34;&gt;Jakarta MVC&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to standardizing the action-based model-view-controller pattern&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/nosql-dev&#34;&gt;Jakarta NoSQL&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to creating applications with NoSQL databases&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jpa-dev&#34;&gt;Jakarta Persistence&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to management of persistence and object / relational mapping&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/rest-dev&#34;&gt;Jakarta RESTful Web Services&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to development of web services following the REST pattern&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/es-dev&#34;&gt;Jakarta Security&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to standards for creating secure Jakarta EE applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/faces-dev&#34;&gt;Jakarta Server Faces&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to Jakarta Server Faces used for building user interfaces for web apps&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jsp-dev&#34;&gt;Jakarta Server Pages&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to defining templates engine for web applications&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/servlet-dev&#34;&gt;Jakarta Servlet&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to Jakarta Servlets; handles HTTP requests and responses&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jstl-dev&#34;&gt;Jakarta Standard Tag Library&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to tags to simplify the JSP development&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jta-dev&#34;&gt;Jakarta Transactions&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to handling transactions consistent with X/Open XA-Specs&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/websocket-dev&#34;&gt;Jakarta Websocket&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to API for Server and Client endpoints for Websocket protocol&lt;/td&gt; &lt;/tr&gt;
    &lt;tr&gt;&lt;td&gt;&lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jaxws-dev&#34;&gt;Jakarta XML Web Services&lt;/a&gt;&lt;/td&gt;&lt;td&gt;The list is used for technical discussions related to means for XML-based Web Services based on SOAP&lt;/td&gt; &lt;/tr&gt;
   &lt;/tbody&gt;
   &lt;/table&gt;</description>
    </item>
    
    <item>
      <title>Members</title>
      <link>https://redesign-2025--jakartaee.netlify.app/membership/members/</link>
      <pubDate>Thu, 28 Feb 2019 16:09:45 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/membership/members/</guid>
      <description>&lt;div class=&#34;eclipsefdn-members-list jakarta-members margin-bottom-50&#34; data-ml-wg=&#34;jakarta-ee&#34;
  data-ml-template=&#34;logo-title-with-levels&#34;&gt;&lt;/div&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Community Cards</title>
      <link>https://redesign-2025--jakartaee.netlify.app/resources/community-cards/</link>
      <pubDate>Wed, 27 Feb 2019 16:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/resources/community-cards/</guid>
      <description>&lt;p&gt;Share your participation in the Jakarta EE community with these social media cards!&lt;/p&gt;
&lt;p&gt;Save the card you want and share it on the social media platform of your choice.&lt;/p&gt;
&lt;p&gt;Remember to use the hashtag #JakartaEE&lt;/p&gt;
&lt;p&gt;

&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/first-patch-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/first-patch-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;
&lt;br&gt;


&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/first-pr-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/first-pr-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;
&lt;br&gt;


&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/jakarta-ee-user-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/jakarta-ee-user-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;
&lt;br&gt;


&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/jakarta-ee-committer-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/jakarta-ee-committer-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;
&lt;br&gt;


&lt;figure class=&#34;eclipsefdn-figure margin-bottom-20&#34;&gt;&lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/jakarta-ee-contributor-card.png&#34;&gt;
    &lt;img class=&#34;img img-responsive&#34; src=&#34;https://redesign-2025--jakartaee.netlify.app/resources/images/jakarta-ee-contributor-card.jpg&#34;/&gt; &lt;/a&gt;
&lt;/figure&gt;
&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Newsletter</title>
      <link>https://redesign-2025--jakartaee.netlify.app/community/newsletter/</link>
      <pubDate>Mon, 04 Jun 2018 10:00:58 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/community/newsletter/</guid>
      <description>&lt;h2 class=&#34;big-text-secondary margin-bottom-20&#34;&gt;Jakarta EE Newsletters Archives&lt;/h2&gt;

&lt;div class=&#34;row margin-bottom-40&#34;&gt;
  &lt;div class=&#34;col-sm-8 card-container&#34;&gt;
    &lt;div class=&#34;card-panel bordered panel panel-default match-height-item-by-row&#34;&gt;
      &lt;h3 class=&#34;big-text text-secondary&#34;&gt;&lt;i class=&#34;fa fa-calendar-o&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt; 2020&lt;/h3&gt;
      &lt;ul&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2020/may/&#34; target=&#34;_blank&#34;&gt;May: Jakarta EE 9 and Beyond&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2020/february/&#34; target=&#34;_blank&#34;&gt;February: Jakarta EE: The Next Phase of Evolution&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/div&gt;
  &lt;/div&gt;

  &lt;div class=&#34;col-sm-8 card-container&#34;&gt;
    &lt;div class=&#34;card-panel bordered panel panel-default match-height-item-by-row&#34;&gt;
      &lt;h3 class=&#34;big-text text-secondary&#34;&gt;&lt;i class=&#34;fa fa-calendar-o&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt; 2019&lt;/h3&gt;
      &lt;ul&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2019/november/&#34; target=&#34;_blank&#34;&gt;November: Jakarta EE Takes Off&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2019/august/&#34; target=&#34;_blank&#34;&gt;August: Jakarta EE 8 Preview&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2019/may/&#34; target=&#34;_blank&#34;&gt;May: Onwards and Upwards for the Jakarta Community&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;http://www.eclipse.org/community/eclipse_newsletter/2019/february/&#34; target=&#34;_blank&#34;&gt;February: Jakarta EE - What&#39;s New in 2019?&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/div&gt;
  &lt;/div&gt;

  &lt;div class=&#34;col-sm-8 card-container&#34;&gt;
    &lt;div class=&#34;card-panel bordered panel panel-default match-height-item-by-row&#34;&gt;
      &lt;h3 class=&#34;big-text text-secondary&#34;&gt;&lt;i class=&#34;fa fa-calendar-o&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt; 2018&lt;/h3&gt;
      &lt;ul&gt;
        &lt;li&gt;&lt;a href=&#34;http://www.eclipse.org/community/eclipse_newsletter/2018/november/&#34; target=&#34;_blank&#34;&gt;November: Jakarta EE: Latest Developments&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;https://www.eclipse.org/community/eclipse_newsletter/2018/august/&#34; target=&#34;_blank&#34;&gt;August: Exploring Jakarta EE Technologies&lt;/a&gt;&lt;/li&gt;
        &lt;li&gt;&lt;a href=&#34;http://www.eclipse.org/community/eclipse_newsletter/2018/may/&#34; target=&#34;_blank&#34;&gt;May: A First Look at Jakarta EE&lt;/a&gt;&lt;/li&gt;
      &lt;/ul&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;


&lt;form action=&#34;https://eclipsecon.us6.list-manage.com/subscribe/post&#34; method=&#34;post&#34; target=&#34;_blank&#34; class=&#34;text-center margin-bottom-60&#34;&gt;
  &lt;input type=&#34;hidden&#34; name=&#34;u&#34; value=&#34;eaf9e1f06f194eadc66788a85&#34;&gt;
  &lt;input type=&#34;hidden&#34; name=&#34;id&#34; value=&#34;98ae69e304&#34;&gt;
  &lt;input type=&#34;submit&#34; value=&#34;Subscribe to our Newsletter&#34; name=&#34;subscribe&#34; class=&#34;button btn btn-primary btn-lg&#34;&gt;
&lt;/form&gt;</description>
    </item>
    
    <item>
      <title>FAQ</title>
      <link>https://redesign-2025--jakartaee.netlify.app/about/faq/</link>
      <pubDate>Sat, 07 Apr 2018 16:09:45 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/about/faq/</guid>
      <description>&lt;h2 class=&#34;big-text-secondary margin-bottom-30&#34;&gt;Frequently Asked Questions&lt;/h2&gt;

&lt;div class=&#34;panel-group&#34; id=&#34;accordion&#34; role=&#34;tablist&#34; aria-multiselectable=&#34;true&#34;&gt;
  
  
    &lt;div class=&#34;panel panel-default panel-bordered&#34;&gt;
      &lt;div class=&#34;panel-heading&#34; role=&#34;tab&#34; id=&#34;heading-0&#34;&gt;
        &lt;h3 class=&#34;h4 panel-title&#34;&gt;
          &lt;a role=&#34;button&#34; data-toggle=&#34;collapse&#34; data-parent=&#34;#accordion&#34; href=&#34;#collapse-0&#34; aria-expanded=&#34;false&#34; aria-controls=&#34;collapse-0&#34;&gt;
            What is Jakarta EE?
            &lt;i class=&#34;fa fa-chevron-right&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt;
            &lt;i class=&#34;fa fa-chevron-down&#34; aria-hidden=&#34;true&#34;&gt;&lt;/i&gt;
          &lt;/a&gt;
          
        &lt;/h3&gt;
      &lt;/div&gt;
      &lt;div id=&#34;collapse-0&#34; class=&#34;panel-collapse collapse&#34; role=&#34;tabpanel&#34; aria-labelledby=&#34;heading-0&#34;&gt;
        &lt;div class=&#34;panel-body&#34;&gt;
          &lt;p&gt;Jakarta EE is the future for cloud-native, light-weight, and traditional enterprise Java applications&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;Java EE technologies contributed by Oracle are being used to create the new Jakarta EE platform&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The Eclipse Foundation is the home of Cloud Native Java open innovation&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;The Jakarta EE Working Group is focused on modernizing Java EE technologies and governance processes to be more open and community-based&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>Jakarta EE Trademark Guidelines</title>
      <link>https://redesign-2025--jakartaee.netlify.app/legal/trademark_guidelines/</link>
      <pubDate>Thu, 05 Apr 2018 16:10:38 -0400</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/legal/trademark_guidelines/</guid>
      <description>&lt;p&gt;&lt;em&gt;Supplement to the Eclipse Foundation Guidelines for Eclipse Logos &amp;amp; Trademarks Policy for Jakarta EE Marks&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Version 1.2 - March 12, 2020&lt;/p&gt;
&lt;p&gt;This document supplements the Eclipse Foundation &lt;a href=&#34;https://www.eclipse.org/legal/logo_guidelines.php&#34;&gt;Guidelines for Eclipse Logos &amp;amp; Trademarks Policy&lt;/a&gt; (this Supplement, together with the Eclipse Foundation Guidelines for Eclipse Logos &amp;amp; Trademarks Policy, collectively, the “Policy”) to address the permitted usage of the Jakarta EE Marks (as defined below). The Jakarta EE marks include, but are not limited to, the following names and/or logos: Jakarta EE, Jakarta EE Working Group, Jakarta EE Member, and Jakarta EE Compatible, (collectively the “Jakarta EE Marks”). The full guidelines on the usage of the Jakarta EE Marks are described in the &lt;a href=&#34;https://redesign-2025--jakartaee.netlify.app/legal/trademark_guidelines/jakarta-ee-branding-guidelines.pdf&#34;&gt;Jakarta EE Brand Usage Handbook&lt;/a&gt;. Use of the Jakarta EE Marks must at all times conform to the Policy.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/creation_review_pr_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/creation_review_pr_template/</guid>
      <description>&lt;h2 id=&#34;creation-review-pr-template&#34;&gt;Creation Review PR template&lt;/h2&gt;
&lt;p&gt;When creating a specification project plan review, create PRs with the content defined as follows.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Link to Specification Project:&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; An index page wombat/_index.md following &lt;a href=&#34;https://github.com/jakartaee/specification-committee/blob/master/spec_index_template.md&#34;&gt;template&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Title should be on the form &amp;ldquo;Jakarta Wombat&amp;rdquo;&lt;/li&gt;
&lt;/ul&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/plan_review_pr_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/plan_review_pr_template/</guid>
      <description>&lt;h2 id=&#34;plan-review-pr-template&#34;&gt;Plan Review PR template&lt;/h2&gt;
&lt;p&gt;When creating a specification project plan review, create PRs with the content defined as follows.&lt;/p&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; A directory in the form wombat/x.y where x.y is the release major.minor version.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; An index page wombat/x.y/_index.md following &lt;a href=&#34;https://github.com/jakartaee/specification-committee/blob/master/spec_page_template.md&#34;&gt;template&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Title should be on the form &amp;ldquo;Jakarta Wombat X.Y (under development)&amp;rdquo;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Includes a plan for the release. Usually, a couple of statements is enough. Otherwise, a link to a document describing the release.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Includes a detailed description of any backward incompatibility (Mark with &lt;strong&gt;N/A&lt;/strong&gt; and check if none)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Declares optional features if there are any (Mark with &lt;strong&gt;N/A&lt;/strong&gt; and check if none)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Includes minimum Java SE version&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Describe any updates or required changes including splitting out the TCK (Mark with &lt;strong&gt;N/A&lt;/strong&gt; and check if not planned)&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Link to updated release record&lt;/li&gt;
&lt;/ul&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/progress_review_pr_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/progress_review_pr_template/</guid>
      <description>&lt;h2 id=&#34;progress-review-pr-template&#34;&gt;Progress Review PR template&lt;/h2&gt;
&lt;p&gt;When creating a specification project plan review, create PRs with the content defined as follows.&lt;/p&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; A directory in the form wombat/x.y where x.y is the release major.minor version.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; An index page wombat/x.y/_index.md following &lt;a href=&#34;https://github.com/jakartaee/specification-committee/blob/master/spec_page_template.md&#34;&gt;template&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Title should be on the form &amp;ldquo;Jakarta Wombat X.Y (under development)&amp;rdquo;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification PDF in the form of jakarta-wombat-spec-x.y-Mn.pdf&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification HTML in the form of jakarta-wombat-spec-x.y-Mn.html&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; For a Progress Review, that sufficient progress has been made on a Compatible Implementation and TCK, to ensure that the spec is implementable and testable.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Link to updated release record&lt;/li&gt;
&lt;/ul&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/pull_request_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/pull_request_template/</guid>
      <description>&lt;h2 id=&#34;specification-pr-template&#34;&gt;Specification PR template&lt;/h2&gt;
&lt;p&gt;When creating a specification project release review, create PRs with the content defined as follows.&lt;/p&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; A directory in the form wombat/x.y where x.y is the release major.minor version, and the directory contains the following.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification PDF in the form of jakarta-wombat-spec-x.y.pdf&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification HTML in the form of jakarta-wombat-spec-x.y.html&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; A specification page named _index.md following the template at:&lt;br&gt;
&lt;a href=&#34;https://github.com/jakartaee/specification-committee/blob/master/spec_page_template.md&#34;&gt;https://github.com/jakartaee/specification-committee/blob/master/spec_page_template.md&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; For a Progress Review, that sufficient progress has been made on a Compatible Implementation and TCK, to ensure that the spec is implementable and testable.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; For a &lt;a href=&#34;https://www.eclipse.org/projects/handbook/#release-review&#34;&gt;Release Review&lt;/a&gt;, a summary that a Compatible Implementation is complete, passes the TCK, and that the TCK includes sufficient coverage of the specification. The TCK users guide MUST include the instructions to run the compatible implementations used to validate the release.&lt;br&gt;
Instructions MAY be by reference.
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Updated release record&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Generated IP Log&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Email to PMC&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Start release review by emailing EMO&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the OSSRH staging repository for the api, javadoc:&lt;br&gt;
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the staging directory on downloads.eclipse.org for the proposed EFTL TCK binary:&lt;br&gt;
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the compatibility certification request issue:&lt;br&gt;
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification JavaDoc in the wombat/x.y/apidocs directory.&lt;br&gt;
If desired, an optional second PR can be created to contain just the JavaDoc in the &lt;code&gt;apidocs&lt;/code&gt; directory.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Note: If any item does not apply, check it and mark N/A below it.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/readme/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/readme/</guid>
      <description>&lt;h1 id=&#34;specifications&#34;&gt;specifications&lt;/h1&gt;
&lt;p&gt;This site is powered by &lt;a href=&#34;https://www.netlify.com/&#34;&gt;Netlify&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://redesign-2025--jakartaee.netlify.app/specifications/service_release_pr_template/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/specifications/service_release_pr_template/</guid>
      <description>&lt;h2 id=&#34;specification-service-release-pr-template&#34;&gt;Specification Service Release PR template&lt;/h2&gt;
&lt;p&gt;When creating a service release, create PRs with the content defined as follows.&lt;/p&gt;
&lt;p&gt;Include the following in the PR:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the Eclipse Project release record:&lt;br&gt;
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the OSSRH staging repository for the api, javadoc:&lt;br&gt;
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the staging directory on downloads.eclipse.org for the proposed EFTL TCK binary:&lt;br&gt;
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; The URL of the compatibility certification request (CCR) issue:&lt;br&gt;
&lt;!-- raw HTML omitted --&gt;&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Specification JavaDoc in the &lt;code&gt;wombat/x.y/apidocs&lt;/code&gt; directory.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Changelog file at this location describing service release updates, &lt;code&gt;wombat/x.y/changelog&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Update &lt;code&gt;wombat/x.y/_index.md&lt;/code&gt; accordingly.&lt;/li&gt;
&lt;li&gt;&lt;input disabled=&#34;&#34; type=&#34;checkbox&#34;&gt; Start service release review by emailing &lt;a href=&#34;https://accounts.eclipse.org/mailing-list/jakarta.ee-spec&#34;&gt;Specification Committee&lt;/a&gt; and referencing this PR.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Note: Specifications themselves do not have service releases.  Only the associated API (limited to JavaDoc updates), JavaDoc, and TCK artifacts can have service releases.  Thus, the Specification version does not use the third digit &amp;ndash; only the &lt;code&gt;x.y&lt;/code&gt; version is used in the Specification directory structure.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title></title>
      <link>https://redesign-2025--jakartaee.netlify.app/templates/footer/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/templates/footer/</guid>
      <description></description>
    </item>
    
    <item>
      <title>{{TITLE}}</title>
      <link>https://redesign-2025--jakartaee.netlify.app/templates/header/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/templates/header/</guid>
      <description></description>
    </item>
    
    <item>
      <title>Jakarta EE 10 Tools Vendor Datasheet</title>
      <link>https://redesign-2025--jakartaee.netlify.app/resources/datasheets/jakarta-ee-10-tools-vendor/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
        <author>webdev@eclipse-foundation.org (Eclipse Foundation)</author>
      
      <guid>https://redesign-2025--jakartaee.netlify.app/resources/datasheets/jakarta-ee-10-tools-vendor/</guid>
      <description>&lt;h2 id=&#34;background&#34;&gt;Background&lt;/h2&gt;
&lt;p&gt;Jakarta EE 10 is a major release of the Jakarta EE platform, which provides a&lt;br&gt;
comprehensive set of APIs and services for developing and deploying Enterprise&lt;br&gt;
Java applications. Jakarta EE 10 includes a number of new features and&lt;br&gt;
improvements over Jakarta EE 9, including:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Support for Java 11 and 17:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Jakarta EE 10 requires Java 11 as the minimum supported version of Java. This&lt;br&gt;
means that applications developed on Jakarta EE 10 will be able to take&lt;br&gt;
advantage of the latest features and performance improvements in Java 11. Java&lt;br&gt;
17 support is also available.&lt;/p&gt;</description>
    </item>
    
  </channel>
</rss>
