Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create the pom for an existing grails project via:

mvn grails:create-pom -DgroupId=ourcompany.com

Now, we have our maven repository available in a local nexus repo:

http://ourcompany.com/nexus

But when i run the above, i get the below error

Downloading: http://ourcompany.com/nexus/content/groups/public/ourcompany/com/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.jar [INFO] Unable to find resource 'ourcompany.com:hibernate-core:jar:3.3.1.GA' in repository central (http://repo1.maven.org/maven2) [INFO] ------------------------------------------------------------------------ [ERROR] BUILD ERROR

But it is in there at simply:

http://ourcompany.com/nexus/content/groups/public/hibernate-core/3.3.1.GA/hibernate-core-3.3.1.GA.jar

Ie, w/o the "ourcompany.com" path. From my perspective, it should just try to pull down hibernate w/o inserting the groupId, but maybe i'm not understanding how i'm supposed to run this command?

share|improve this question
I am getting the same error more than one year later. Did you ever resolve the issue? – digitalbreed Oct 8 '11 at 16:36

1 Answer

What happens is you just run:

mvn grails:create-pom
share|improve this answer
Yeah, sorry, that is the cmd i'm using. Just mistyped it above. – Jack Apr 13 '10 at 4:31
@Jack Ok then I suggest trying without the -DgroupId – Pascal Thivent Apr 13 '10 at 4:40
I get an error saying it wants the -DgroupId=VALUE param. Or, it gives me the option of "adding a <groupId> under <configuration> for grails-maven-plugin", but not even sure where that would be. – Jack Apr 13 '10 at 17:59
@Jack Well, adding the groupId in the configuration of the plugin is equivalent and should lead to the same problem. Just let me know if you want to test this anyway. – Pascal Thivent Apr 13 '10 at 18:11
@Bill My guess is that the groupId is added to the groupId of dependencies (i.e. it's a bug). But this is a wild guess. – Pascal Thivent Apr 13 '10 at 20:59
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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