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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE ivy-module [
  3. <!-- Keep the version number in sync with build.xml -->
  4. <!ENTITY atmosphere.runtime.version "2.2.7.vaadin1">
  5. <!ENTITY atmosphere.js.version "2.2.6.vaadin4">
  6. ]>
  7. <ivy-module version="2.0"
  8. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd"
  10. xmlns:m="http://ant.apache.org/ivy/maven">
  11. <info organisation="com.vaadin" module="vaadin-push" revision="${vaadin.version}" />
  12. <configurations>
  13. <conf name="build" />
  14. <conf name="build-provided" />
  15. <conf name="ide" visibility="private" />
  16. <conf name="test" visibility="private" />
  17. <!-- Used for building push.js only -->
  18. <conf name="push.js" visibility="private" />
  19. </configurations>
  20. <publications>
  21. <artifact type="jar" ext="jar" />
  22. <!-- <artifact type="source" ext="jar" m:classifier="sources" />
  23. <artifact type="javadoc" ext="jar" m:classifier="javadoc" /> -->
  24. <artifact type="pom" ext="pom" />
  25. </publications>
  26. <dependencies>
  27. <!-- API DEPENDENCIES -->
  28. <!-- @WebListener is used for JSR356 websockets so we need to compile with servlet 3 API -->
  29. <dependency org="javax.servlet" name="javax.servlet-api"
  30. rev="3.0.1" conf="build-provided,ide,test -> default" />
  31. <!-- Atmosphere -->
  32. <dependency org="com.vaadin.external.atmosphere"
  33. name="atmosphere-runtime" rev="&atmosphere.runtime.version;"
  34. conf="build,ide,test -> default" />
  35. <dependency org="com.vaadin.external.atmosphere.client"
  36. name="jquery" rev="&atmosphere.js.version;" conf="push.js -> default" />
  37. </dependencies>
  38. </ivy-module>