Getting the Binaries using Maven

To use this release in your Apache Maven pom.xml, import the Camel Bill of Materials (BOM) and then include the camel-core and any other components needed without specifying the version.

{{ htmlUnescape (printf `
  
    
      org.apache.camel
      camel-bom
      %s
      pom
      import
    
  



  
    org.apache.camel
    camel-core
  
  
    org.apache.camel
    camel-COMPONENT
  

` .Params.version) }}

To use this release in a Spring Boot application, use Spring Boot spring-boot-dependencies and Camel camel-spring-boot-bom Bill of Materials (BOM):

{{ htmlUnescape (printf `
  
    
      org.springframework.boot
      spring-boot-dependencies
       SPRING BOOT VERSION HERE 
      pom
      import
    
    
      org.apache.camel.springboot
      camel-spring-boot-bom
      %s
      pom
      import
    
  



  
    org.apache.camel.springboot
    camel-COMPONENT-starter
  

` .Params.version) }}
{{ partial "releases/downloads.html" (dict "Category" (index (index $.Site.Data "release-categories") "camel") "Pages" $.Site.Pages "Version" .Params.version) }}

Git tag checkout

Release is tagged with camel-{{ .Params.version }} in the Git, to fetch it use:

git clone https://git-wip-us.apache.org/repos/asf/camel.git
cd camel
git checkout camel-{{ .Params.version }}

Resolved issues

Here is a list of all the issues that have been resolved for this release

{{ $issues_json := getJSON "https://issues.apache.org/jira/rest/api/latest/search?jql=fixVersion=" (string .Params.jiraVersionId) "&fields=issuetype,summary&maxResults=1000" }} {{ $issues := dict }} {{ range $issues_json.issues }} {{ $issues_by_type := (or (index $issues .fields.issuetype.name) slice) | append (dict "issue" .key "summary" .fields.summary) }} {{ $issues = merge $issues (dict .fields.issuetype.name $issues_by_type ) }} {{ end }} {{ range $type, $data := $issues }}

{{ $type }} ({{ len $data }})

{{ range $data }}
{{ .issue }}
{{ .summary }}
{{ end }}
{{ end }}