ivy.xml 689 B

123456789101112131415
  1. <ivy-module version="2.0">
  2. <info organisation="name.tflucke" module="ieat2"/>
  3. <configurations defaultconfmapping="default->default">
  4. <conf name="default" />
  5. <conf name="provided" description="Provided by the environment" />
  6. <conf name="compile" extends="default,provided" />
  7. <conf name="war" extends="default"/>
  8. </configurations>
  9. <dependencies>
  10. <!-- Spring Framework -->
  11. <dependency org="commons-logging" name="commons-logging" rev="1.2"/>
  12. <dependency org="org.springframework" name="spring-webmvc" rev="5.0.9.RELEASE"/>
  13. <dependency org="javax.servlet" name="javax.servlet-api" rev="4.0.1" conf="provided->default"/>
  14. </dependencies>
  15. </ivy-module>