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.3KB

1234567891011121314151617181920212223242526272829303132333435
  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-themes"
  7. revision="${vaadin.version}" />
  8. <configurations>
  9. <conf name="build" />
  10. <conf name="build-provided" />
  11. <conf name="compile-theme" 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. </publications>
  19. <dependencies>
  20. <dependency org="com.vaadin" name="vaadin-sass-compiler"
  21. rev="${vaadin.sass.version}" conf="compile-theme->default" />
  22. <dependency org="com.vaadin" name="vaadin-buildhelpers"
  23. rev="${vaadin.version}" conf="compile-theme->build">
  24. <exclude type="pom" conf="test" />
  25. </dependency>
  26. <!-- remove cssparser override once sass-compiler is updated -->
  27. <override org="net.sourceforge.cssparser" module="cssparser"
  28. rev="0.9.11" />
  29. </dependencies>
  30. </ivy-module>