FWIW, My guess is something like below will work if you want to get 1.3.0-SNAPSHOT jar. Having said that, you specifically said 1.2.0-SNAPSHOT jar's. Those don't appear to exist anymore as 1.2.0 has been shipped.
https://repository.apache.org/content/repositories/snapshots-group/org/apache/shiro/shiro-core/1.2.0-SNAPSHOT/ Also, 1.2.0 is available from the central Maven repository which Maven already knows about: http://repo1.maven.org/maven2/org/apache/shiro/shiro-core/1.2.0/ HTH -Jim <settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <servers> <server> <id>apache.releases</id> <directoryPermissions>775</directoryPermissions> <filePermissions>644</filePermissions> </server> <server> <id>apache.snapshots</id> <directoryPermissions>775</directoryPermissions> <filePermissions>644</filePermissions> </server> </servers> <!-- This is your currently active profile --> <activeProfiles> <activeProfile>profile-1</activeProfile> </activeProfiles> <!-- Profile definitions including remote repositories --> <profiles> <profile> <id>profile-1</id> <repositories> <repository> <id>apache.snapshots</id> <url>http://repository.apache.org/content/groups/snapshots-group/</url> <snapshots> <enabled>true</enabled> </snapshots> <releases> <enabled>false</enabled> </releases> </repository> </repositories> </profile> </profiles> </settings> -----Original Message----- From: NunoM [mailto:[email protected]] Sent: Wednesday, April 04, 2012 7:41 PM To: [email protected] Subject: Re: Maven Repository Hello, Yes. I already spent some time reading the documentation. And I thought I had understood it well. I've already added the server tag and necessary permissions that are located in the readme.txt on the website. Which is: http://maven.40175.n5.nabble.com/file/n5619282/settings.xml settings.xml I'm not trying to look for a shortcut, just for a little help. :) These are all new concepts to me, I'm getting there little by little. But then one doubt came to my mind. 1. Do I need to create a profile tag in my settings. xml and then create the repository inside? Thanks in advance, Nuno. -- View this message in context: http://maven.40175.n5.nabble.com/Maven-Repository-tp5619256p5619282.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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
