I have a project on Bitbucket. Only the sources are committed. To retrieve the project onto a new machine, I used Version Control > Checkout from Version Control from within IntelliJ.

It then asks whether I would like to create a new project from this source, to which I reply Yes. So far, so good. It creates a nice little Java project for me, consisting of a single module.

However, my goal in pulling this project into IntelliJ was to turn it into a Maven project. I cannot find any option anywhere that will let me do this!

Is there a way to have IntelliJ just generate a basic empty pom.xml for me, with a name and an artifactId and a repository? Or, is there a way to import the project as a Maven project in the first place? (Whenever I try to create a project from existing source, it only gives me the option of a Java project.)

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

You should be able to right-click on the module, "Add framework support...", and check the "Maven" technology. This will create a pom.xml as well.

Not sure what you mean by a repository, are you talking about adding the source repository elements? I think you need to do that manually, but I'm not sure.

link|improve this answer
Exactly what I was looking for! And yeah, I meant adding the default maven2 "Central" repository element. But I can add that myself, no big deal. – Neil Traft Oct 4 '11 at 3:08
1  
Cool. But you shouldn't have to add that; it's already the default. – Dave Newton Oct 4 '11 at 3:12
Ah, right again. – Neil Traft Oct 4 '11 at 12:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.