manolopeng
manolopeng

Reputation: 213

can not create a maven archetype project, the progress bar get stuck in 33%

I installed Eclipse IDE for Enterprise Java and Web Developers (includes Incubating components) Version: 2022-09 (4.25.0) Build id: 20220908-1902 It includes already maven, and I have tried to create some maven archetype projects, but without success, always get stuck in the progress bar. Anyone has some clues? Thank you!

can not create a maven archetype project, the progress bar get stuck in 33%

Upvotes: 21

Views: 22990

Answers (8)

nimodka
nimodka

Reputation: 193

Yes, this was a very tricky thing.

As already mentioned by others, you need to type Y in the console and press enter. Then the wizard will continue and complete the action.

Alternatively, you can get rid of this issue by simply unchecking the checkbox as shown below:

Eclipse Screen

Upvotes: 2

Sasindu Bandara
Sasindu Bandara

Reputation: 41

I was stucking on that and I was thinking to learn another framework :|. Just need to click Y and press enter.

groupId: com.myMaven artifactId: FirstProjectMaven version: 0.0.1-SNAPSHOT package: com.myMaven.FirstProjectMaven Y: : Y

Upvotes: 3

Jothi Lakshmi
Jothi Lakshmi

Reputation: 51

Typing 'y' resolves the issue.

Upvotes: 2

Tarik
Tarik

Reputation: 31

You just need to click Y (yes) in the console to confirm

Upvotes: 3

roudlek
roudlek

Reputation: 385

You just need to go to the console and press Enter on your keyboard !

Upvotes: 3

Sunil Kumar
Sunil Kumar

Reputation: 151

Just need to enter Y in Console and press enter. Refer to snapshot for more details

Snapshot

Upvotes: 15

Dan Morton
Dan Morton

Reputation: 889

I had this too, it took me a long time to spot the very simple fix. If you look in the console you'll see that the maven project generation is in interactive mode. You just need to click Y (yes) in the console to confirm that you are happy with the configuration and it will finish.

Upvotes: 78

S Asi
S Asi

Reputation: 43

This could be wrong version for MacOS ARM architecture (M1 chip): Version: 2022-09 (4.25.0) Build id: 20220908-1902

Is this Mac book of M1 chip or Intel? I had the same issue with the same version on my Mac book with M1 chip. I installed the right eclipse version from "https://www.eclipse.org/downloads/" --> choose "AArch64"

direct link: https://www.eclipse.org/downloads/download.php?file=/oomph/epp/2022-09/R/eclipse-inst-jre-mac-aarch64.dmg

Upvotes: 0

Related Questions