Victor2748
Victor2748

Reputation: 4199

Eclipse Maven Integration archetype is not on the list

I am following Java Brains' Maven tutorials to learn maven. In the tutorials, when creating a new Maven Project, and searching "webapp", there will be an artifact with an id "javaee6" (and many others).

enter image description here

However, in my case, I only see 2 archetypes:

enter image description here

I am using Eclipse Luna (4.4.1) with the latest version of Eclipse Maven Integration. What is wrong here, and how can I resolve this problem?

Upvotes: 0

Views: 114

Answers (1)

Amitesh Rai
Amitesh Rai

Reputation: 874

These archetypes are available in maven central. http://repo1.maven.org/maven2/archetype-catalog.xml

To add this catalog go to: Window / Preferences / Maven / Archetype / Add Remote Catalog...

Upvotes: 2

Related Questions