Ray Krueger wrote:
Your dependency should be declared as <dependency> <groupId>apache-directory</groupId> <artifactId>apacheds-main</artifactId> <version>apacheds-main-0.9-SNAPSHOT</version> <type>jar</type> <url>http://directory.apache.org</url> </dependency>
It basically breaks down like this...
groupId = Folder
artifactId = file name minus version and extension
version = the version part of the filename
type = extension
url = reference page about the artifact
So would it not be:
<dependency>
<groupId>apache-directory</groupId>
<artifactId>apacheds-main</artifactId>
<version>0.9-SNAPSHOT</version>
<type>jar</type>
<url>http://directory.apache.org</url>
</dependency>If the artifactId is appended to the version?
Thanks.
-- Robert r. Sanders Chief Technologist iPOV (334) 821-5412 www.ipov.net
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Home: http://acegisecurity.sourceforge.net Acegisecurity-developer mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/acegisecurity-developer
