davsclaus commented on code in PR #16226:
URL: https://github.com/apache/camel/pull/16226#discussion_r1837523492
##########
dsl/camel-kamelet-main/src/main/java/org/apache/camel/main/download/MavenDependencyDownloader.java:
##########
@@ -393,6 +384,23 @@ public List<String[]> resolveAvailableVersions(
return answer;
}
+ private void resolveQuarkus(String minimumVersion, String v, Set<String>
extraRepos, List<String[]> answer) throws Exception {
+ if (VersionHelper.isGE(v, MINIMUM_QUARKUS_VERSION)) {
+ String cv = resolveCamelVersionByQuarkusVersion(v, extraRepos);
+ if (cv != null && VersionHelper.isGE(cv, minimumVersion)) {
+ answer.add(new String[] { cv, v });
+ }
+ }
+ }
+
+ private void resolveSb(String minimumVersion, String v, Set<String>
extraRepos, List<String[]> answer) throws Exception {
Review Comment:
resolveSpringBoot
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]