You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ivy.xml 1.4KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ivy-module version="2.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd"
  5. xmlns:m="http://ant.apache.org/ivy/maven">
  6. <info organisation="com.vaadin" module="vaadin-client-compiled"
  7. revision="${vaadin.version}" />
  8. <configurations>
  9. <conf name="build" />
  10. <conf name="build-provided" />
  11. <conf name="compile-module" visibility="private" />
  12. </configurations>
  13. <publications>
  14. <artifact type="jar" ext="jar" />
  15. <!-- <artifact type="source" ext="jar" m:classifier="sources" /> -->
  16. <!-- <artifact type="javadoc" ext="jar" m:classifier="javadoc" /> -->
  17. <artifact type="pom" ext="pom" />
  18. <!-- cache must be a separate artifact, not within vaadin-client-compiled -->
  19. <!-- <artifact type="jar" name="vaadin-client-compiled-cache"/> -->
  20. </publications>
  21. <dependencies>
  22. <dependency org="com.vaadin" name="vaadin-server"
  23. rev="${vaadin.version}" conf="compile-module-> build" />
  24. <dependency org="com.vaadin" name="vaadin-client"
  25. rev="${vaadin.version}" conf="compile-module-> build" />
  26. <dependency org="com.vaadin" name="vaadin-client-compiler"
  27. rev="${vaadin.version}" conf="compile-module-> build" />
  28. </dependencies>
  29. </ivy-module>