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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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. <!-- Vaadin 7 components -->
  135. <dependency>
  136. <groupId>${project.groupId}</groupId>
  137. <artifactId>vaadin-compatibility-client-compiled</artifactId>
  138. <version>${project.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>${project.groupId}</groupId>
  142. <artifactId>vaadin-compatibility-server</artifactId>
  143. <version>${project.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>${project.groupId}</groupId>
  147. <artifactId>vaadin-compatibility-client</artifactId>
  148. <version>${project.version}</version>
  149. </dependency>
  150. <!-- For compiling TestingWidgetSet -->
  151. <dependency>
  152. <groupId>${project.groupId}</groupId>
  153. <artifactId>vaadin-client-compiler</artifactId>
  154. <version>${project.version}</version>
  155. <scope>provided</scope>
  156. </dependency>
  157. <!-- Servlet API -->
  158. <dependency>
  159. <!-- Jetty requires 3.1.0 -->
  160. <groupId>javax.servlet</groupId>
  161. <artifactId>javax.servlet-api</artifactId>
  162. <version>3.1.0</version>
  163. <scope>provided</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>${project.groupId}</groupId>
  167. <artifactId>vaadin-uitest-common</artifactId>
  168. <version>${project.version}</version>
  169. <scope>test</scope>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.jcraft</groupId>
  173. <artifactId>jsch</artifactId>
  174. </dependency>
  175. <dependency>
  176. <groupId>commons-codec</groupId>
  177. <artifactId>commons-codec</artifactId>
  178. </dependency>
  179. <dependency>
  180. <groupId>commons-io</groupId>
  181. <artifactId>commons-io</artifactId>
  182. </dependency>
  183. <!-- Mainly for SQLContainer tests -->
  184. <dependency>
  185. <groupId>org.hsqldb</groupId>
  186. <artifactId>hsqldb</artifactId>
  187. </dependency>
  188. <!-- This should be removed once tests have been updated to use lang3 -->
  189. <dependency>
  190. <groupId>commons-lang</groupId>
  191. <artifactId>commons-lang</artifactId>
  192. </dependency>
  193. <dependency>
  194. <groupId>com.vaadin</groupId>
  195. <artifactId>vaadin-sass-compiler</artifactId>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.eclipse.jgit</groupId>
  199. <artifactId>org.eclipse.jgit</artifactId>
  200. <exclusions>
  201. <exclusion>
  202. <groupId>org.apache.httpcomponents</groupId>
  203. <artifactId>httpclient</artifactId>
  204. </exclusion>
  205. </exclusions>
  206. </dependency>
  207. </dependencies>
  208. <build>
  209. <resources>
  210. <resource>
  211. <directory>src/main/themes</directory>
  212. <excludes>
  213. <exclude>**/*.scss</exclude>
  214. </excludes>
  215. </resource>
  216. <resource>
  217. <directory>src/main/resources</directory>
  218. </resource>
  219. </resources>
  220. <plugins>
  221. <plugin>
  222. <groupId>com.vaadin</groupId>
  223. <artifactId>vaadin-maven-plugin</artifactId>
  224. <configuration>
  225. <warSourceDirectory>src/main/themes</warSourceDirectory>
  226. <webappDirectory>${project.build.outputDirectory}/VAADIN/widgetsets</webappDirectory>
  227. <persistentunitcachedir>${project.build.directory}/gwt-unitCache</persistentunitcachedir>
  228. </configuration>
  229. <executions>
  230. <execution>
  231. <goals>
  232. <goal>compile</goal>
  233. <goal>compile-theme</goal>
  234. </goals>
  235. </execution>
  236. </executions>
  237. </plugin>
  238. <plugin>
  239. <groupId>org.eclipse.jetty</groupId>
  240. <artifactId>jetty-maven-plugin</artifactId>
  241. <version>${jetty.version}</version>
  242. <configuration>
  243. <httpConnector>
  244. <port>8888</port>
  245. </httpConnector>
  246. </configuration>
  247. </plugin>
  248. <plugin>
  249. <artifactId>maven-install-plugin</artifactId>
  250. <configuration>
  251. <skip>true</skip>
  252. </configuration>
  253. </plugin>
  254. <plugin>
  255. <artifactId>maven-deploy-plugin</artifactId>
  256. <configuration>
  257. <skip>${skip.uitest.deployment}</skip>
  258. </configuration>
  259. </plugin>
  260. <plugin>
  261. <artifactId>maven-surefire-plugin</artifactId>
  262. <configuration>
  263. <skip>true</skip>
  264. </configuration>
  265. </plugin>
  266. <plugin>
  267. <groupId>org.codehaus.mojo</groupId>
  268. <artifactId>animal-sniffer-maven-plugin</artifactId>
  269. <configuration>
  270. <skip>true</skip>
  271. </configuration>
  272. </plugin>
  273. </plugins>
  274. <pluginManagement>
  275. <plugins>
  276. <plugin>
  277. <groupId>org.sonatype.plugins</groupId>
  278. <artifactId>nexus-staging-maven-plugin</artifactId>
  279. <configuration>
  280. <skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
  281. </configuration>
  282. </plugin>
  283. <plugin>
  284. <artifactId>maven-javadoc-plugin</artifactId>
  285. <configuration>
  286. <skip>true</skip>
  287. </configuration>
  288. </plugin>
  289. </plugins>
  290. </pluginManagement>
  291. </build>
  292. <profiles>
  293. <profile>
  294. <!-- Profile used to deploy the uitest war for testing -->
  295. <id>dev-build</id>
  296. <activation>
  297. <activeByDefault>false</activeByDefault>
  298. </activation>
  299. <properties>
  300. <skip.uitest.deployment>false</skip.uitest.deployment>
  301. </properties>
  302. </profile>
  303. </profiles>
  304. </project>