Hi,

I'm afraid this could be a more general newbie maven question, but I give it a 
try here.

I have artifactory running with "Allow Anonym Access" checked. I have a Virtual 
Repository containing all remote repository and one local repository at which 
one artifact is deployed.

Now I'm confused how to enter this repository information to be able to 
retrieve artifacts from that virtual repository.

I have the following settings.xml:

<settings
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 
http://maven.apache.org/xsd/settings-1.0.0.xsd";
    xmlns="http://maven.apache.org/SETTINGS/1.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
    <mirrors>
        <mirror>
            <id>artifactory</id>
            <mirrorOf>*</mirrorOf>
            <url>http://myserver:8080/artifactory/remote-repos</url>
            <name>Artifactory</name>
        </mirror>
    </mirrors>
    <activeProfiles>
        <activeProfile>artifactory</activeProfile>
    </activeProfiles>
</settings>

If I run my project it failes that it cant find the parent pom in any 
repository. The link shown in the exception is valid though and browsing to it 
in firefox shows me the artifact.

What else do I have to enter to retrieve artifacts from my repositories 
(currently I have nothing written in the project pom.xml)

Thanks

 

 


------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
Artifactory-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/artifactory-users

Reply via email to