I'm trying to set up Maven repository for some jar files from vendors and from classes I wrote.

It's working for the oracle jar files I put in, but not for my own jar.

I set up an apache webserver to act as the mvn repository. I set the directories to show the index of files ( Options Indexes ).

Here's what the snippet from my root pom.xml

  <repositories>
    <repository>
      <id>mycompany-external-repo</id>
      <url>http://svn.mycompany.com/mvn</url>
    </repository>
  </repositories>

Here's the snippet for one project's pom.xml with the dependencies

    <dependency>
        <groupId>com.oracle.aq</groupId>
        <artifactId>aqapi</artifactId>
        <version>10.2.0.1.0</version>
    </dependency>

    <dependency>
        <groupId>com.mydomain</groupId>
        <artifactId>middleware</artifactId> 
        <version>1.0</version>
    </dependency>       

The URLs of the mvn repository are like so:

http://svn.mycompany.com/mvn/com/oracle/aq/aqapi/10.2.0.1.0/aqapi-10.2.0.1.0.jar    

http://svn.mycompany.com/mvn/com/mydomain/middleware/1.0/middleware-1.0.jar

What am I doing wrong with my jar file?

Here is the result of the mvn install

[INFO] Scanning for projects...
[INFO]                                                                         
[INFO] ------------------------------------------------------------------------
[INFO] Building core 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: http://svn.mycompany.com/mvn/com/mydomain/middleware/1.0/middleware-1.0.pom
Downloading: http://repo1.maven.org/maven2/com/mydomain/middleware/1.0/middleware-1.0.pom
[WARNING] The POM for com.mydomain:middleware:jar:1.0 is missing, no dependency information available
link|improve this question

Assuming the files are actually installed, there's nothing wrong with the snippets you've showed us :-/ – Jeremy Heiler Mar 31 '11 at 17:25
Can you include Maven's output from the build? Just the bit where it says "failed to resolve artifact", path to artifact, etc... – gmoore Mar 31 '11 at 17:31
1  
Do I need to create a .pom file in my repository? – jeph perro Mar 31 '11 at 18:15
feedback

1 Answer

Maven first looks for pom's at the expected location of the repo, before it will look for any other artifacts, without it, it cannot fetch them because it will not know how to deal with any dependencies for the artifact.

This is why it might be better to use something like Artifactory, which has a full featured open source edition. Artifactory will automatically generate pom info for you when you deploy your artifact and knows how to manage your deployment attempts. And, well, it will just do a whole lot more than just providing a site for your artifacts.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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