You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/02/06 08:20:58 UTC

[camel-website] branch bom created (now 34a742d4)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a change to branch bom
in repository https://gitbox.apache.org/repos/asf/camel-website.git


      at 34a742d4 CAMEL-19011: update release notes to point users to use camel-bom / camel-spring-boot-bom

This branch includes the following new commits:

     new 34a742d4 CAMEL-19011: update release notes to point users to use camel-bom / camel-spring-boot-bom

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[camel-website] 01/01: CAMEL-19011: update release notes to point users to use camel-bom / camel-spring-boot-bom

Posted by da...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch bom
in repository https://gitbox.apache.org/repos/asf/camel-website.git

commit 34a742d45f48c7065566ee37af82cce6bf2a6c07
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Mon Feb 6 09:20:45 2023 +0100

    CAMEL-19011: update release notes to point users to use camel-bom / camel-spring-boot-bom
---
 layouts/partials/releases/camel.html | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/layouts/partials/releases/camel.html b/layouts/partials/releases/camel.html
index 0e2f3ebb..6adbb92e 100644
--- a/layouts/partials/releases/camel.html
+++ b/layouts/partials/releases/camel.html
@@ -1,7 +1,6 @@
 <h2 id="maven"><a class="anchor" href="#maven"></a>Getting the Binaries using Maven</h2>
 <p>To use this release in your <a href="https://maven.apache.org">Apache Maven</a> <code>pom.xml</code>, import the Camel Bill of Materials (BOM) and then include the <code>camel-core</code> and any other components needed without specifying the version.</p>
 <aside>
-  <p><mark>Note:</mark> <code>camel-bom</code> is available from Camel 2.20.0 onward.</p>
   <p>Replace the <code>COMPONENT</code> with the artifact outlined in the <a href="/components/next/">component documentation</a></p>
 </aside>
 <pre><code>{{ htmlUnescape (printf `<dependencyManagement>
@@ -27,17 +26,15 @@
   </dependency>
 </dependencies>
 ` .Params.version) }}</code></pre>
-<p>To use this release in a Spring Boot application, use the <code>camel-spring-boot-dependencies</code> Bill of Materials (BOM):
+<p>To use this release in a Spring Boot application, use the <code>camel-spring-boot-bom</code> Bill of Materials (BOM):
 <aside>
-  <p><mark>Note:</mark> for Camel 3.0.0 and newer releases the <code>groupId</code> for Camel Spring Boot support changed from <code>org.apache.camel</code> to <code>org.apache.camel.springbooot</code>, so be sure to check that the appropriate <code>groupId</code> is used for the Camel version.</p>
-  <p><mark>Note:</mark> for Camel 3.8.0 and newer releases there is another BOM available with the <code>artifactId</code> of <code>camel-spring-boot-bom</code> which you could instead make use of. For details see <a href="/camel-spring-boot/next/#_camel_spring_boot_bom_vs_camel_spring_boot_dependencies_bom">the corresponding documentation.</a></p>
   <p>Replace the <code>COMPONENT</code> with the artifact outlined in the <a href="/components/next/">component documentation</a></p>
 </aside>
 <pre><code>{{ htmlUnescape (printf `<dependencyManagement>
   <dependencies>
     <dependency>
       <groupId>org.apache.camel.springboot</groupId>
-      <artifactId>camel-spring-boot-dependencies</artifactId>
+      <artifactId>camel-spring-boot-bom</artifactId>
       <version>%s</version>
       <type>pom</type>
       <scope>import</scope>