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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.vaadin</groupId>
  7. <artifactId>vaadin-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <groupId>com.vaadin</groupId>
  11. <artifactId>vaadin-root</artifactId>
  12. <name>vaadin-root</name>
  13. <packaging>pom</packaging>
  14. <version>7.7.0-SNAPSHOT</version>
  15. <prerequisites>
  16. <maven>3.0.5</maven>
  17. </prerequisites>
  18. <properties>
  19. <maven.compiler.source>1.6</maven.compiler.source>
  20. <maven.compiler.target>1.6</maven.compiler.target>
  21. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  22. <!-- Used version numbers for dependencies -->
  23. <commons-io.version>2.4</commons-io.version>
  24. <google.appengine.version>1.7.7</google.appengine.version>
  25. <guava.version>16.0.1.vaadin1</guava.version>
  26. <jsoup.version>1.8.3</jsoup.version>
  27. <liferay.portal.version>6.0.2</liferay.portal.version>
  28. <vaadin.sass.version>0.9.13</vaadin.sass.version>
  29. <vaadin.gwt.version>2.7.0.vaadin3</vaadin.gwt.version>
  30. <vaadin.plugin.version>7.7.0.appwidgetset4</vaadin.plugin.version>
  31. <javax.portlet.version>2.0</javax.portlet.version>
  32. <javax.servlet.version>3.0.1</javax.servlet.version>
  33. <javax.validation.version>1.0.0.GA</javax.validation.version>
  34. <!-- Test dependencies -->
  35. <junit.version>4.11</junit.version>
  36. <!-- Atmosphere versions -->
  37. <atmosphere.runtime.version>2.2.7.vaadin1</atmosphere.runtime.version>
  38. <atmosphere.js.version>2.2.6.vaadin4</atmosphere.js.version>
  39. </properties>
  40. <!-- TODO: remove this after maven plugin has been released -->
  41. <pluginRepositories>
  42. <pluginRepository>
  43. <id>vaadin-prereleases</id>
  44. <url>http://maven.vaadin.com/vaadin-prereleases</url>
  45. </pluginRepository>
  46. </pluginRepositories>
  47. <organization>
  48. <name>Vaadin Ltd</name>
  49. </organization>
  50. <url>https://vaadin.com/</url>
  51. <description>Vaadin Framework Root Pom</description>
  52. <modules>
  53. <module>all</module>
  54. <module>buildhelpers</module>
  55. <module>bom</module>
  56. <module>shared</module>
  57. <module>push</module>
  58. <module>server</module>
  59. <module>client</module>
  60. <module>client-compiler</module>
  61. <module>client-compiled</module>
  62. <module>themes</module>
  63. <module>widgets</module>
  64. <module>liferay</module>
  65. </modules>
  66. <build>
  67. <pluginManagement>
  68. <plugins>
  69. <plugin>
  70. <artifactId>maven-clean-plugin</artifactId>
  71. <version>3.0.0</version>
  72. </plugin>
  73. <plugin>
  74. <artifactId>maven-compiler-plugin</artifactId>
  75. <version>3.5.1</version>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-deploy-plugin</artifactId>
  79. <version>2.8.2</version>
  80. </plugin>
  81. <plugin>
  82. <artifactId>maven-install-plugin</artifactId>
  83. <version>2.5.2</version>
  84. </plugin>
  85. <plugin>
  86. <artifactId>maven-resources-plugin</artifactId>
  87. <version>2.7</version>
  88. </plugin>
  89. <plugin>
  90. <artifactId>maven-site-plugin</artifactId>
  91. <version>3.5</version>
  92. </plugin>
  93. <plugin>
  94. <artifactId>maven-jar-plugin</artifactId>
  95. <version>2.6</version>
  96. </plugin>
  97. <plugin>
  98. <artifactId>maven-assembly-plugin</artifactId>
  99. <version>2.6</version>
  100. </plugin>
  101. <plugin>
  102. <artifactId>maven-surefire-plugin</artifactId>
  103. <version>2.19.1</version>
  104. </plugin>
  105. <plugin>
  106. <artifactId>maven-antrun-plugin</artifactId>
  107. <version>1.8</version>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.felix</groupId>
  111. <artifactId>maven-bundle-plugin</artifactId>
  112. <version>3.0.1</version>
  113. </plugin>
  114. <plugin>
  115. <groupId>org.apache.maven.plugins</groupId>
  116. <artifactId>maven-dependency-plugin</artifactId>
  117. <version>2.10</version>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.codehaus.mojo</groupId>
  121. <artifactId>exec-maven-plugin</artifactId>
  122. <version>1.4.0</version>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.eclipse.m2e</groupId>
  126. <artifactId>lifecycle-mapping</artifactId>
  127. <version>1.0.0</version>
  128. <configuration>
  129. <lifecycleMappingMetadata>
  130. <pluginExecutions>
  131. <pluginExecution>
  132. <pluginExecutionFilter>
  133. <groupId>
  134. org.apache.maven.plugins
  135. </groupId>
  136. <artifactId>
  137. maven-antrun-plugin
  138. </artifactId>
  139. <versionRange>
  140. [1.8,)
  141. </versionRange>
  142. <goals>
  143. <goal>run</goal>
  144. </goals>
  145. </pluginExecutionFilter>
  146. <action>
  147. <ignore></ignore>
  148. </action>
  149. </pluginExecution>
  150. </pluginExecutions>
  151. </lifecycleMappingMetadata>
  152. </configuration>
  153. </plugin>
  154. </plugins>
  155. </pluginManagement>
  156. </build>
  157. <profiles>
  158. <profile>
  159. <id>release</id>
  160. <activation>
  161. <activeByDefault>false</activeByDefault>
  162. </activation>
  163. <properties>
  164. <vaadin.plugin.version>${project.version}</vaadin.plugin.version>
  165. </properties>
  166. </profile>
  167. </profiles>
  168. </project>