-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.js
More file actions
47 lines (44 loc) · 1.83 KB
/
index.js
File metadata and controls
47 lines (44 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
* @fileoverview
* This module exports the versions of Camel catalogs and Kamelets used in the project.
* It includes versions for Main, Quarkus, and SpringBoot catalogs.
*
* Camel JBang commands to list available catalogs:
* - Main: `camel version list --fresh --runtime=main`
* - Quarkus: `camel version list --fresh --runtime=quarkus`
* - Spring Boot: `camel version list --fresh --runtime=spring-boot`
*
* For Red Hat versions, add `--repo=redhat` to the commands.
* - Main: `camel version list --fresh --runtime=main --repo=redhat`
* - Quarkus: `camel version list --fresh --runtime=quarkus --repo=redhat``
* - Spring Boot: `camel version list --fresh --runtime=spring-boot --repo=redhat``
*/
const CATALOGS = {
// https://repo1.maven.org/maven2/org/apache/camel/camel-catalog/
// https://maven.repository.redhat.com/ga/org/apache/camel/camel-catalog/
Main: ['4.18.0', '4.14.5', '4.14.2.redhat-00019', '4.10.7.redhat-00009', '4.8.5.redhat-00008', '4.4.0.redhat-00046'],
// https://repo1.maven.org/maven2/org/apache/camel/quarkus/camel-quarkus-catalog/
// https://maven.repository.redhat.com/ga/org/apache/camel/quarkus/camel-quarkus-catalog/
Quarkus: [
'3.32.0',
'3.27.2',
'3.27.1.redhat-00004',
'3.20.0.redhat-00010',
'3.15.0.redhat-00010',
'3.8.0.redhat-00018',
],
// https://repo1.maven.org/maven2/org/apache/camel/springboot/camel-catalog-provider-springboot/
// https://maven.repository.redhat.com/ga/org/apache/camel/springboot/camel-catalog-provider-springboot/
SpringBoot: [
'4.18.0',
'4.14.5',
'4.14.2.redhat-00018',
'4.10.7.redhat-00013',
'4.8.5.redhat-00008',
'4.4.0.redhat-00039',
],
// https://repo1.maven.org/maven2/org/citrusframework/citrus-catalog-schema/
Citrus: ['4.9.4'],
};
const KAMELETS_VERSION = '4.18.0';
module.exports = { CATALOGS, KAMELETS_VERSION };