Quarkus project build failing in BambooHow to add local jar files to a Maven project?Maven is not working in Java 8 when Javadoc tags are incompleteMaven package works but Intellij's build failsError Executing MavenHow to perform a Selenium test via Bamboo?junit test runs OK locally and in jenkins but not in bambooBamboo build failure due to unexpected exceptionError injecting constructor, java.lang.NoClassDefFoundError: com/thoughtworks/xstream/io/HierarchicalStreamDriver in Spring MVCsonar report failed while compiling buildBamboo: Remote Build Agent does not find local VM
Why would the US President need briefings on UFOs?
Can you be convicted for being a murderer twice?
In an emergency, how do I find and share my position?
Was Tuvok bluffing when he said that Voyager's transporters rendered the Kazon weapons useless?
Why did MS-DOS applications built using Turbo Pascal fail to start with a division by zero error on faster systems?
Create Tmux pane with sudo from sudoed pane?
Why didn’t Doctor Strange stay in the original winning timeline?
The teacher logged me in as administrator for doing a short task, is the whole system now compromised?
What is the evidence on the danger of feeding whole blueberries and grapes to infants and toddlers?
Why is my Earth simulation slower than the reality?
Why can't an Airbus A330 dump fuel in an emergency?
Why does The Ancient One think differently about Doctor Strange in Endgame than the film Doctor Strange?
What does it mean to have a subnet mask /32?
How do I make distance between concentric circles equal?
Is it appropriate for a prospective landlord to ask me for my credit report?
IndexOptimize - Configuration
What is this symbol: semicircles facing eachother
How much code would a codegolf golf if a codegolf could golf code?
How to refer to a regex group in awk regex?
How is "sein" conjugated in this sub-sentence?
Does an object count as "being moved" when placed in a Bag of Holding before its wielder moves, and then after moving they take the object out again?
Are illustrations in novels frowned upon?
Most practical knots for hitching a line to an object while keeping the bitter end as tight as possible, without sag?
Where is the "conservation" in the first law of thermodynamics?
Quarkus project build failing in Bamboo
How to add local jar files to a Maven project?Maven is not working in Java 8 when Javadoc tags are incompleteMaven package works but Intellij's build failsError Executing MavenHow to perform a Selenium test via Bamboo?junit test runs OK locally and in jenkins but not in bambooBamboo build failure due to unexpected exceptionError injecting constructor, java.lang.NoClassDefFoundError: com/thoughtworks/xstream/io/HierarchicalStreamDriver in Spring MVCsonar report failed while compiling buildBamboo: Remote Build Agent does not find local VM
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm trying to build a Quarkus app in Bamboo and it's failing with a lot of provisioning errors:
[WARNING] Error injecting: io.quarkus.maven.BuildMojo
com.google.inject.ProvisionException: Unable to provision, see the following errors:
1) Error injecting: private org.eclipse.aether.spi.log.Logger
org.apache.maven.repository.internal.DefaultVersionRangeResolver.logger
while locating org.apache.maven.repository.internal.DefaultVersionRangeResolver
while locating java.lang.Object annotated with *
at org.eclipse.sisu.wire.LocatorWiring
while locating org.eclipse.aether.impl.VersionRangeResolver
for parameter 1 at
org.eclipse.aether.internal.impl.DefaultRepositorySystem.<init>(Unknown Source)
while locating org.eclipse.aether.internal.impl.DefaultRepositorySystem
while locating java.lang.Object annotated with *
while locating io.quarkus.maven.BuildMojo
Caused by: java.lang.IllegalArgumentException: Can not set
org.eclipse.aether.spi.log.Logger field
org.apache.maven.repository.internal.DefaultVersionRangeResolver.logger to
org.eclipse.aether.internal.impl.slf4j.Slf4jLoggerFactory
Using Maven 3.2.5 with clean package
as the goal. The project builds fine locally.
What could be causing this?
java maven bamboo quarkus
add a comment |
I'm trying to build a Quarkus app in Bamboo and it's failing with a lot of provisioning errors:
[WARNING] Error injecting: io.quarkus.maven.BuildMojo
com.google.inject.ProvisionException: Unable to provision, see the following errors:
1) Error injecting: private org.eclipse.aether.spi.log.Logger
org.apache.maven.repository.internal.DefaultVersionRangeResolver.logger
while locating org.apache.maven.repository.internal.DefaultVersionRangeResolver
while locating java.lang.Object annotated with *
at org.eclipse.sisu.wire.LocatorWiring
while locating org.eclipse.aether.impl.VersionRangeResolver
for parameter 1 at
org.eclipse.aether.internal.impl.DefaultRepositorySystem.<init>(Unknown Source)
while locating org.eclipse.aether.internal.impl.DefaultRepositorySystem
while locating java.lang.Object annotated with *
while locating io.quarkus.maven.BuildMojo
Caused by: java.lang.IllegalArgumentException: Can not set
org.eclipse.aether.spi.log.Logger field
org.apache.maven.repository.internal.DefaultVersionRangeResolver.logger to
org.eclipse.aether.internal.impl.slf4j.Slf4jLoggerFactory
Using Maven 3.2.5 with clean package
as the goal. The project builds fine locally.
What could be causing this?
java maven bamboo quarkus
What is "3.x" exactly and can you try 3.5? I suspect the Quarkus Maven plugin requires a certain minimum Maven version, which isn't exactly 3.0.0, but something like 3.3.9 or so.
– Ladicek
Mar 27 at 16:25
Bamboo has the option to choose 3.x and then it uses the latest available. When it builds it's actually using 3.2.5. I will see if that can be upgraded.
– None
Mar 27 at 16:57
@Ladicek you're right - older versions of maven give the same error locally.
– None
Mar 27 at 17:20
I added a real asnwer instead of just a comment :-)
– Ladicek
Mar 29 at 11:54
add a comment |
I'm trying to build a Quarkus app in Bamboo and it's failing with a lot of provisioning errors:
[WARNING] Error injecting: io.quarkus.maven.BuildMojo
com.google.inject.ProvisionException: Unable to provision, see the following errors:
1) Error injecting: private org.eclipse.aether.spi.log.Logger
org.apache.maven.repository.internal.DefaultVersionRangeResolver.logger
while locating org.apache.maven.repository.internal.DefaultVersionRangeResolver
while locating java.lang.Object annotated with *
at org.eclipse.sisu.wire.LocatorWiring
while locating org.eclipse.aether.impl.VersionRangeResolver
for parameter 1 at
org.eclipse.aether.internal.impl.DefaultRepositorySystem.<init>(Unknown Source)
while locating org.eclipse.aether.internal.impl.DefaultRepositorySystem
while locating java.lang.Object annotated with *
while locating io.quarkus.maven.BuildMojo
Caused by: java.lang.IllegalArgumentException: Can not set
org.eclipse.aether.spi.log.Logger field
org.apache.maven.repository.internal.DefaultVersionRangeResolver.logger to
org.eclipse.aether.internal.impl.slf4j.Slf4jLoggerFactory
Using Maven 3.2.5 with clean package
as the goal. The project builds fine locally.
What could be causing this?
java maven bamboo quarkus
I'm trying to build a Quarkus app in Bamboo and it's failing with a lot of provisioning errors:
[WARNING] Error injecting: io.quarkus.maven.BuildMojo
com.google.inject.ProvisionException: Unable to provision, see the following errors:
1) Error injecting: private org.eclipse.aether.spi.log.Logger
org.apache.maven.repository.internal.DefaultVersionRangeResolver.logger
while locating org.apache.maven.repository.internal.DefaultVersionRangeResolver
while locating java.lang.Object annotated with *
at org.eclipse.sisu.wire.LocatorWiring
while locating org.eclipse.aether.impl.VersionRangeResolver
for parameter 1 at
org.eclipse.aether.internal.impl.DefaultRepositorySystem.<init>(Unknown Source)
while locating org.eclipse.aether.internal.impl.DefaultRepositorySystem
while locating java.lang.Object annotated with *
while locating io.quarkus.maven.BuildMojo
Caused by: java.lang.IllegalArgumentException: Can not set
org.eclipse.aether.spi.log.Logger field
org.apache.maven.repository.internal.DefaultVersionRangeResolver.logger to
org.eclipse.aether.internal.impl.slf4j.Slf4jLoggerFactory
Using Maven 3.2.5 with clean package
as the goal. The project builds fine locally.
What could be causing this?
java maven bamboo quarkus
java maven bamboo quarkus
edited Mar 27 at 16:58
None
asked Mar 27 at 15:43
NoneNone
7198 silver badges32 bronze badges
7198 silver badges32 bronze badges
What is "3.x" exactly and can you try 3.5? I suspect the Quarkus Maven plugin requires a certain minimum Maven version, which isn't exactly 3.0.0, but something like 3.3.9 or so.
– Ladicek
Mar 27 at 16:25
Bamboo has the option to choose 3.x and then it uses the latest available. When it builds it's actually using 3.2.5. I will see if that can be upgraded.
– None
Mar 27 at 16:57
@Ladicek you're right - older versions of maven give the same error locally.
– None
Mar 27 at 17:20
I added a real asnwer instead of just a comment :-)
– Ladicek
Mar 29 at 11:54
add a comment |
What is "3.x" exactly and can you try 3.5? I suspect the Quarkus Maven plugin requires a certain minimum Maven version, which isn't exactly 3.0.0, but something like 3.3.9 or so.
– Ladicek
Mar 27 at 16:25
Bamboo has the option to choose 3.x and then it uses the latest available. When it builds it's actually using 3.2.5. I will see if that can be upgraded.
– None
Mar 27 at 16:57
@Ladicek you're right - older versions of maven give the same error locally.
– None
Mar 27 at 17:20
I added a real asnwer instead of just a comment :-)
– Ladicek
Mar 29 at 11:54
What is "3.x" exactly and can you try 3.5? I suspect the Quarkus Maven plugin requires a certain minimum Maven version, which isn't exactly 3.0.0, but something like 3.3.9 or so.
– Ladicek
Mar 27 at 16:25
What is "3.x" exactly and can you try 3.5? I suspect the Quarkus Maven plugin requires a certain minimum Maven version, which isn't exactly 3.0.0, but something like 3.3.9 or so.
– Ladicek
Mar 27 at 16:25
Bamboo has the option to choose 3.x and then it uses the latest available. When it builds it's actually using 3.2.5. I will see if that can be upgraded.
– None
Mar 27 at 16:57
Bamboo has the option to choose 3.x and then it uses the latest available. When it builds it's actually using 3.2.5. I will see if that can be upgraded.
– None
Mar 27 at 16:57
@Ladicek you're right - older versions of maven give the same error locally.
– None
Mar 27 at 17:20
@Ladicek you're right - older versions of maven give the same error locally.
– None
Mar 27 at 17:20
I added a real asnwer instead of just a comment :-)
– Ladicek
Mar 29 at 11:54
I added a real asnwer instead of just a comment :-)
– Ladicek
Mar 29 at 11:54
add a comment |
1 Answer
1
active
oldest
votes
This is caused by too old Maven version. Per https://quarkus.io/get-started/, Maven 3.5.3 or later is required.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55381249%2fquarkus-project-build-failing-in-bamboo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is caused by too old Maven version. Per https://quarkus.io/get-started/, Maven 3.5.3 or later is required.
add a comment |
This is caused by too old Maven version. Per https://quarkus.io/get-started/, Maven 3.5.3 or later is required.
add a comment |
This is caused by too old Maven version. Per https://quarkus.io/get-started/, Maven 3.5.3 or later is required.
This is caused by too old Maven version. Per https://quarkus.io/get-started/, Maven 3.5.3 or later is required.
answered Mar 29 at 11:54
LadicekLadicek
2,7698 silver badges11 bronze badges
2,7698 silver badges11 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55381249%2fquarkus-project-build-failing-in-bamboo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What is "3.x" exactly and can you try 3.5? I suspect the Quarkus Maven plugin requires a certain minimum Maven version, which isn't exactly 3.0.0, but something like 3.3.9 or so.
– Ladicek
Mar 27 at 16:25
Bamboo has the option to choose 3.x and then it uses the latest available. When it builds it's actually using 3.2.5. I will see if that can be upgraded.
– None
Mar 27 at 16:57
@Ladicek you're right - older versions of maven give the same error locally.
– None
Mar 27 at 17:20
I added a real asnwer instead of just a comment :-)
– Ladicek
Mar 29 at 11:54