Wayne Fay wrote:
> 
> What software are you using to run your internal repository? And how
> did you get the plugin there (mvn deploy; manual copy of files;
> something else)? Make sure the metadata is present for the Eclipse
> plugin in your repo.
> 

I'm using Archiva 1.0.1 and Maven 2.0.8.
My Maven settings.xml are the default ones, no changes (on both machines).
My pom.xml has the following entry:

        <distributionManagement>
                <snapshotRepository>
                        <id>projectrepo</id>
                        <url>
                                
dav:http://here.build.machine.ip/archiva/repository/projectrepo/
                        </url>
                </snapshotRepository>
        </distributionManagement>

        <repositories>
                <repository>
                        <id>projectrepo</id>
                        <name>projectreponame</name>
                        
<url>http://here.build.machine.ip/archiva/repository/projectrepo/</url>
                        <releases>
                                <enabled>true</enabled>
                        </releases>
                        <snapshots>
                                <enabled>true</enabled>
                        </snapshots>
                </repository>
        </repositories>

The problem is, I have noticed that even when I run a build on the build
machine, where the Archiva repository is located, it also doesn't download
any Maven plugins.

The only way for me to download and install the Maven plugins both on the
build and my local machine is to set a proxy in my settings.xml and comment
out the <distributionManagement> and <repositories> elements from pom.xml -
so when I bypass the internal repository, it works fine. 

What could be wrong there?

Thanks,
Papapara Tudu


-- 
View this message in context: 
http://www.nabble.com/Local-repository-not-downloading-Eclipse-plugins-from-the-internal-repository-tp15502970s177p15547059.html
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to