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