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.

pom-template.xml 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>com.vaadin</groupId>
  4. <artifactId>vaadin</artifactId>
  5. <version>@MAVEN-VERSION@</version>
  6. <name>Vaadin</name>
  7. <organization>
  8. <name>Vaadin Ltd</name>
  9. <url>http://vaadin.com</url>
  10. </organization>
  11. <url>http://vaadin.com</url>
  12. <description>
  13. Vaadin is a web application framework for Rich Internet Applications (RIA).
  14. Vaadin enables easy development and maintenance of fast and secure rich web
  15. applications with a stunning look and feel and a wide browser support.
  16. It features a server-side architecture with the majority of the logic running
  17. on the server. Ajax technology is used at the browser-side to ensure a rich
  18. and interactive user experience.
  19. </description>
  20. <licenses>
  21. <license>
  22. <name>Apache License Version 2.0</name>
  23. <distribution>repo</distribution>
  24. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  25. </license>
  26. </licenses>
  27. <distributionManagement>
  28. <repository>
  29. <id>vaadin-releases</id>
  30. <name>Vaadin release repository</name>
  31. <url>http://oss.sonatype.org/content/repositories/vaadin-releases/</url>
  32. </repository>
  33. <snapshotRepository>
  34. <id>vaadin-snapshots</id>
  35. <name>Vaadin snapshot repository</name>
  36. <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  37. </snapshotRepository>
  38. </distributionManagement>
  39. <repositories>
  40. <repository>
  41. <id>vaadin-snapshots</id>
  42. <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  43. <releases>
  44. <enabled>false</enabled>
  45. </releases>
  46. <snapshots>
  47. <enabled>true</enabled>
  48. </snapshots>
  49. </repository>
  50. <repository>
  51. <id>vaadin-releases</id>
  52. <url>http://oss.sonatype.org/content/repositories/vaadin-releases/</url>
  53. <releases>
  54. <enabled>true</enabled>
  55. </releases>
  56. <snapshots>
  57. <enabled>false</enabled>
  58. </snapshots>
  59. </repository>
  60. </repositories>
  61. </project>