• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Ivy Settings Issue

 
Ranch Hand
Posts: 93
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have following Ivy file settings which is located in workspace

<ivysettings basedir=".">
<property name="repo.dir" value="${basedir}/../ivy-repo"/>
<property name="cache.dir" value="${basedir}/../ivy-cache"/>
<echo message="Repo directory is : ${repo.dir}"/>
<settings defaultCache="${cache.dir}"
defaultResolver="internal"/>

<resolvers>
<filesystem name="internal">
<ivy pattern="${repo.dir}/[module]/ivy.xml" />
<artifact pattern="${repo.dir}/[module]/[revision]/jar/[artifact].[ext]" />
</filesystem>
</resolvers>
<modules>
<module organisation="xyz" name=".*" resolver="internal" />
</modules>
</ivysettings>


Ivy XML file for jars of spring

<ivy-module version="2.0">
<info organisation="org.springframework" module="spring" revision="3.0.0"/>
<publications>
<artifact name="org.springframework.aop-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.asm-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.aspects-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.beans-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.context.support-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.context-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.core-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.expression-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.instrument-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.jdbc-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.jms-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.orm-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.oxm-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.test-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.transaction-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.web.portlet-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.web.servlet-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.web.struts-3.0.2.RELEASE" ext="jar" type="jar"/>
<artifact name="org.springframework.web-3.0.2.RELEASE" ext="jar" type="jar"/>
</publications>
</ivy-module>

and Ivy file in project

<ivy-module version="2.0">
<info organisation="org.apache" module="test-web-module"/>
<dependencies>
<dependency org="org.springframework" name="spring" rev="3.0.0"/>
<dependency org="org.velocity" name="velocity" rev="1.4.0"/>
</dependencies>
</ivy-module>


not able to download files in my lib folder can any body see any problem in this configuration?

Thanks in advance
 
author
Posts: 3285
13
Mac OS X Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Bhavesh,

Could you please edit your post (UseCodeTags) that way people can read your question a lot more easily!
reply
    Bookmark Topic Watch Topic
  • New Topic