Skip to content

Instantly share code, notes, and snippets.

@jasongrimes
Created January 9, 2012 01:54
Show Gist options
  • Save jasongrimes/1580544 to your computer and use it in GitHub Desktop.
Save jasongrimes/1580544 to your computer and use it in GitHub Desktop.
Sample project-level Ivy file describing dependencies of a web application
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0"
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info organisation="example_org" module="example_app"/>
<dependencies>
<dependency org="jQuery" name="jQuery" rev="1.7.1"/>
<dependency org="Zend" name="ZendFramework" rev="1.11.11"/>
<dependency org="Zend" name="ZendX" rev="1.11.11"/>
<dependency org="Doctrine" name="Doctrine" rev="2.1.5"/>
</dependencies>
</ivy-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment