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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>com.vaadin</groupId>
  6. <artifactId>vaadin-parent</artifactId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <groupId>com.vaadin</groupId>
  10. <artifactId>${module.name}</artifactId>
  11. <version>${vaadin.maven.version}</version>
  12. <name>Vaadin</name>
  13. <organization>
  14. <name>Vaadin Ltd</name>
  15. <url>http://vaadin.com</url>
  16. </organization>
  17. <url>http://vaadin.com</url>
  18. <description>
  19. Vaadin is a web application framework for Rich Internet Applications (RIA).
  20. Vaadin enables easy development and maintenance of fast and
  21. secure rich web
  22. applications with a stunning look and feel and a wide browser support.
  23. It features a server-side architecture with the majority of the logic
  24. running
  25. on the server. Ajax technology is used at the browser-side to ensure a
  26. rich
  27. and interactive user experience.
  28. </description>
  29. <licenses>
  30. <license>
  31. <name>Apache License Version 2.0</name>
  32. <distribution>repo</distribution>
  33. <url>http://www.apache.org/licenses/LICENSE-2.0</url>
  34. </license>
  35. </licenses>
  36. <scm>
  37. <connection>scm:https:https://github.com/vaadin/vaadin.git</connection>
  38. <developerConnection>scm:https:https://github.com/vaadin/vaadin.git</developerConnection>
  39. <url>https://github.com/vaadin/vaadin</url>
  40. </scm>
  41. <developers>
  42. <developer>
  43. <id>artur</id>
  44. <name>Artur Signell</name>
  45. <email>artur.signell@vaadin.com</email>
  46. <url>http://vaadin.com/web/artur</url>
  47. <organization>Vaadin Ltd</organization>
  48. <organizationUrl>http://vaadin.com/</organizationUrl>
  49. <roles>
  50. <role>architect</role>
  51. <role>developer</role>
  52. <role>team manager</role>
  53. </roles>
  54. <timezone>2</timezone>
  55. </developer>
  56. <developer>
  57. <id>magi</id>
  58. <name>Marko Gronroos</name>
  59. <email>magi@vaadin.com</email>
  60. <url>http://vaadin.com/web/magi</url>
  61. <organization>Vaadin Ltd</organization>
  62. <organizationUrl>http://vaadin.com/</organizationUrl>
  63. <roles>
  64. <role>build manager</role>
  65. </roles>
  66. <timezone>2</timezone>
  67. </developer>
  68. </developers>
  69. <repositories>
  70. <repository>
  71. <id>vaadin-snapshots</id>
  72. <url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
  73. <releases>
  74. <enabled>false</enabled>
  75. </releases>
  76. <snapshots>
  77. <enabled>true</enabled>
  78. </snapshots>
  79. </repository>
  80. <repository>
  81. <id>vaadin-releases</id>
  82. <url>https://oss.sonatype.org/content/repositories/vaadin-releases/</url>
  83. <releases>
  84. <enabled>true</enabled>
  85. </releases>
  86. <snapshots>
  87. <enabled>false</enabled>
  88. </snapshots>
  89. </repository>
  90. </repositories>
  91. </project>