您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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-root</artifactId>
  8. <version>8.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-uitest</artifactId>
  11. <name>vaadin-uitest</name>
  12. <packaging>war</packaging>
  13. <properties>
  14. <skip.uitest.deployment>true</skip.uitest.deployment>
  15. </properties>
  16. <url>https://vaadin.com/</url>
  17. <description>Vaadin UI tests</description>
  18. <repositories>
  19. <repository>
  20. <id>vaadin-addons</id>
  21. <url>http://maven.vaadin.com/vaadin-addons</url>
  22. </repository>
  23. </repositories>
  24. <dependencies>
  25. <!-- API DEPENDENCIES -->
  26. <dependency>
  27. <groupId>javax.portlet</groupId>
  28. <artifactId>portlet-api</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>javax.validation</groupId>
  33. <artifactId>validation-api</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.hibernate</groupId>
  37. <artifactId>hibernate-validator</artifactId>
  38. </dependency>
  39. <!-- Google App Engine -->
  40. <dependency>
  41. <groupId>com.google.appengine</groupId>
  42. <artifactId>appengine-api-1.0-sdk</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <!-- jetty-servlets needed by ProxyTest, but not by jetty-runner -->
  46. <!-- Jetty before vaadin-* on the classpath to make Eclipse use the right version -->
  47. <dependency>
  48. <groupId>org.eclipse.jetty</groupId>
  49. <artifactId>jetty-server</artifactId>
  50. <scope>provided</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.eclipse.jetty</groupId>
  54. <artifactId>jetty-servlets</artifactId>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.eclipse.jetty.websocket</groupId>
  59. <artifactId>websocket-server</artifactId>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.eclipse.jetty</groupId>
  64. <artifactId>jetty-webapp</artifactId>
  65. <version>${jetty.version}</version>
  66. <scope>provided</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.eclipse.jetty</groupId>
  70. <artifactId>jetty-util</artifactId>
  71. <version>${jetty.version}</version>
  72. <scope>provided</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.eclipse.jetty</groupId>
  76. <artifactId>jetty-proxy</artifactId>
  77. <version>${jetty.version}</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <!-- LIBRARY DEPENDENCIES (compile time) -->
  81. <!-- Project modules -->
  82. <dependency>
  83. <groupId>${project.groupId}</groupId>
  84. <artifactId>vaadin-server</artifactId>
  85. <version>${project.version}</version>
  86. <exclusions>
  87. <exclusion>
  88. <groupId>javax.servlet</groupId>
  89. <artifactId>javax.servlet-api</artifactId>
  90. </exclusion>
  91. </exclusions>
  92. </dependency>
  93. <dependency>
  94. <groupId>${project.groupId}</groupId>
  95. <artifactId>vaadin-client</artifactId>
  96. <version>${project.version}</version>
  97. <exclusions>
  98. <exclusion>
  99. <groupId>javax.validation</groupId>
  100. <artifactId>javax.servlet-api</artifactId>
  101. </exclusion>
  102. </exclusions>
  103. </dependency>
  104. <dependency>
  105. <groupId>com.google.gwt</groupId>
  106. <artifactId>gwt-elemental</artifactId>
  107. <scope>provided</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.google.gwt</groupId>
  111. <artifactId>gwt-servlet</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>${project.groupId}</groupId>
  115. <artifactId>vaadin-client-compiled</artifactId>
  116. <version>${project.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>${project.groupId}</groupId>
  120. <artifactId>vaadin-themes</artifactId>
  121. <version>${project.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>${project.groupId}</groupId>
  125. <artifactId>vaadin-push</artifactId>
  126. <version>${project.version}</version>
  127. <exclusions>
  128. <exclusion>
  129. <groupId>javax.validation</groupId>
  130. <artifactId>javax.servlet-api</artifactId>
  131. </exclusion>
  132. </exclusions>
  133. </dependency>
  134. <!-- For compiling TestingWidgetSet -->
  135. <dependency>
  136. <groupId>${project.groupId}</groupId>
  137. <artifactId>vaadin-client-compiler</artifactId>
  138. <version>${project.version}</version>
  139. <scope>provided</scope>
  140. </dependency>
  141. <!-- Servlet API -->
  142. <dependency>
  143. <groupId>javax.servlet</groupId>
  144. <artifactId>javax.servlet-api</artifactId>
  145. <scope>provided</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>${project.groupId}</groupId>
  149. <artifactId>vaadin-uitest-common</artifactId>
  150. <version>${project.version}</version>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>junit</groupId>
  155. <artifactId>junit</artifactId>
  156. <scope>test</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.hamcrest</groupId>
  160. <artifactId>hamcrest-all</artifactId>
  161. <scope>test</scope>
  162. </dependency>
  163. <dependency>
  164. <groupId>com.jcraft</groupId>
  165. <artifactId>jsch</artifactId>
  166. </dependency>
  167. <dependency>
  168. <groupId>commons-codec</groupId>
  169. <artifactId>commons-codec</artifactId>
  170. </dependency>
  171. <dependency>
  172. <groupId>commons-io</groupId>
  173. <artifactId>commons-io</artifactId>
  174. </dependency>
  175. <!-- Mainly for SQLContainer tests -->
  176. <dependency>
  177. <groupId>org.hsqldb</groupId>
  178. <artifactId>hsqldb</artifactId>
  179. </dependency>
  180. <!-- This should be removed once tests have been updated to use lang3 -->
  181. <dependency>
  182. <groupId>commons-lang</groupId>
  183. <artifactId>commons-lang</artifactId>
  184. </dependency>
  185. <dependency>
  186. <groupId>com.vaadin</groupId>
  187. <artifactId>vaadin-sass-compiler</artifactId>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.eclipse.jgit</groupId>
  191. <artifactId>org.eclipse.jgit</artifactId>
  192. <exclusions>
  193. <exclusion>
  194. <groupId>org.apache.httpcomponents</groupId>
  195. <artifactId>httpclient</artifactId>
  196. </exclusion>
  197. </exclusions>
  198. </dependency>
  199. </dependencies>
  200. <build>
  201. <resources>
  202. <resource>
  203. <directory>src/main/themes</directory>
  204. <excludes>
  205. <exclude>**/*.scss</exclude>
  206. </excludes>
  207. </resource>
  208. <resource>
  209. <directory>src/main/resources</directory>
  210. </resource>
  211. </resources>
  212. <plugins>
  213. <plugin>
  214. <groupId>com.vaadin</groupId>
  215. <artifactId>vaadin-maven-plugin</artifactId>
  216. <configuration>
  217. <warSourceDirectory>src/main/themes</warSourceDirectory>
  218. <webappDirectory>${project.build.outputDirectory}/VAADIN/widgetsets</webappDirectory>
  219. <persistentunitcachedir>${project.build.directory}/gwt-unitCache</persistentunitcachedir>
  220. </configuration>
  221. <executions>
  222. <execution>
  223. <goals>
  224. <goal>compile</goal>
  225. <goal>compile-theme</goal>
  226. </goals>
  227. </execution>
  228. </executions>
  229. </plugin>
  230. <plugin>
  231. <groupId>org.eclipse.jetty</groupId>
  232. <artifactId>jetty-maven-plugin</artifactId>
  233. <version>${jetty.version}</version>
  234. <configuration>
  235. <httpConnector>
  236. <port>8888</port>
  237. </httpConnector>
  238. </configuration>
  239. </plugin>
  240. <plugin>
  241. <artifactId>maven-install-plugin</artifactId>
  242. <configuration>
  243. <skip>true</skip>
  244. </configuration>
  245. </plugin>
  246. <plugin>
  247. <artifactId>maven-deploy-plugin</artifactId>
  248. <configuration>
  249. <skip>${skip.uitest.deployment}</skip>
  250. </configuration>
  251. </plugin>
  252. <plugin>
  253. <artifactId>maven-surefire-plugin</artifactId>
  254. <configuration>
  255. <skip>true</skip>
  256. </configuration>
  257. </plugin>
  258. <plugin>
  259. <groupId>org.codehaus.mojo</groupId>
  260. <artifactId>animal-sniffer-maven-plugin</artifactId>
  261. <configuration>
  262. <skip>true</skip>
  263. </configuration>
  264. </plugin>
  265. </plugins>
  266. <pluginManagement>
  267. <plugins>
  268. <plugin>
  269. <groupId>org.sonatype.plugins</groupId>
  270. <artifactId>nexus-staging-maven-plugin</artifactId>
  271. <configuration>
  272. <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
  273. </configuration>
  274. </plugin>
  275. <plugin>
  276. <artifactId>maven-javadoc-plugin</artifactId>
  277. <configuration>
  278. <skip>true</skip>
  279. </configuration>
  280. </plugin>
  281. </plugins>
  282. </pluginManagement>
  283. </build>
  284. <profiles>
  285. <profile>
  286. <!-- Profile used to deploy the uitest war for testing -->
  287. <id>dev-build</id>
  288. <activation>
  289. <activeByDefault>false</activeByDefault>
  290. </activation>
  291. <properties>
  292. <skip.uitest.deployment>false</skip.uitest.deployment>
  293. </properties>
  294. </profile>
  295. </profiles>
  296. </project>