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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  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>7.7.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-uitest</artifactId>
  11. <name>vaadin-uitest</name>
  12. <packaging>pom</packaging>
  13. <properties>
  14. <jetty.version>8.1.12.v20130726</jetty.version>
  15. </properties>
  16. <organization>
  17. <name>Vaadin Ltd</name>
  18. </organization>
  19. <url>https://vaadin.com/</url>
  20. <description>Vaadin UI tests</description>
  21. <repositories>
  22. <repository>
  23. <id>vaadin-addons</id>
  24. <url>http://maven.vaadin.com/vaadin-addons</url>
  25. </repository>
  26. </repositories>
  27. <dependencies>
  28. <!-- API DEPENDENCIES -->
  29. <dependency>
  30. <groupId>javax.portlet</groupId>
  31. <artifactId>portlet-api</artifactId>
  32. <version>2.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>javax.validation</groupId>
  36. <artifactId>validation-api</artifactId>
  37. <version>1.0.0.GA</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.hibernate</groupId>
  41. <artifactId>hibernate-validator</artifactId>
  42. <version>4.2.0.Final</version>
  43. </dependency>
  44. <!-- Google App Engine -->
  45. <dependency>
  46. <groupId>com.google.appengine</groupId>
  47. <artifactId>appengine-api-1.0-sdk</artifactId>
  48. <version>1.7.7</version>
  49. </dependency>
  50. <!-- LIBRARY DEPENDENCIES (compile time) -->
  51. <!-- Project modules -->
  52. <dependency>
  53. <groupId>com.vaadin</groupId>
  54. <artifactId>vaadin-server</artifactId>
  55. <version>${project.version}</version>
  56. <exclusions>
  57. <exclusion>
  58. <groupId>javax.servlet</groupId>
  59. <artifactId>javax.servlet-api</artifactId>
  60. </exclusion>
  61. </exclusions>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.vaadin</groupId>
  65. <artifactId>vaadin-client</artifactId>
  66. <version>${project.version}</version>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>javax.validation</groupId>
  70. <artifactId>javax.servlet-api</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.vaadin</groupId>
  76. <artifactId>vaadin-client-compiled</artifactId>
  77. <version>${project.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.vaadin</groupId>
  81. <artifactId>vaadin-themes</artifactId>
  82. <version>${project.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.vaadin</groupId>
  86. <artifactId>vaadin-push</artifactId>
  87. <version>${project.version}</version>
  88. <exclusions>
  89. <exclusion>
  90. <groupId>javax.validation</groupId>
  91. <artifactId>javax.servlet-api</artifactId>
  92. </exclusion>
  93. </exclusions>
  94. </dependency>
  95. <!-- For compiling TestingWidgetSet -->
  96. <dependency>
  97. <groupId>com.vaadin</groupId>
  98. <artifactId>vaadin-client-compiler</artifactId>
  99. <version>${project.version}</version>
  100. </dependency>
  101. <!-- Servlet 3.0 API -->
  102. <dependency>
  103. <groupId>javax.servlet</groupId>
  104. <artifactId>javax.servlet-api</artifactId>
  105. <version>3.0.1</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.eclipse.jetty</groupId>
  109. <artifactId>jetty-server</artifactId>
  110. <version>${jetty.version}</version>
  111. <exclusions>
  112. <exclusion>
  113. <groupId>org.eclipse.jetty</groupId>
  114. <artifactId>orbit</artifactId>
  115. </exclusion>
  116. </exclusions>
  117. </dependency>
  118. <!-- jetty-servlets needed by ProxyTest, but not by jetty-runner -->
  119. <dependency>
  120. <groupId>org.eclipse.jetty</groupId>
  121. <artifactId>jetty-servlets</artifactId>
  122. <version>${jetty.version}</version>
  123. <exclusions>
  124. <exclusion>
  125. <groupId>org.eclipse.jetty</groupId>
  126. <artifactId>orbit</artifactId>
  127. </exclusion>
  128. </exclusions>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.eclipse.jetty</groupId>
  132. <artifactId>jetty-websocket</artifactId>
  133. <version>${jetty.version}</version>
  134. <exclusions>
  135. <exclusion>
  136. <groupId>org.eclipse.jetty</groupId>
  137. <artifactId>orbit</artifactId>
  138. </exclusion>
  139. </exclusions>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.eclipse.jetty</groupId>
  143. <artifactId>jetty-webapp</artifactId>
  144. <version>${jetty.version}</version>
  145. <exclusions>
  146. <exclusion>
  147. <groupId>org.eclipse.jetty</groupId>
  148. <artifactId>orbit</artifactId>
  149. </exclusion>
  150. </exclusions>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.eclipse.jetty</groupId>
  154. <artifactId>jetty-util</artifactId>
  155. <version>${jetty.version}</version>
  156. <exclusions>
  157. <exclusion>
  158. <groupId>org.eclipse.jetty</groupId>
  159. <artifactId>orbit</artifactId>
  160. </exclusion>
  161. </exclusions>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.mortbay.jetty</groupId>
  165. <artifactId>jetty-runner</artifactId>
  166. <version>${jetty.version}</version>
  167. <exclusions>
  168. <exclusion>
  169. <groupId>org.eclipse.jetty</groupId>
  170. <artifactId>orbit</artifactId>
  171. </exclusion>
  172. </exclusions>
  173. </dependency>
  174. <dependency>
  175. <groupId>junit</groupId>
  176. <artifactId>junit</artifactId>
  177. <version>4.11</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.hamcrest</groupId>
  181. <artifactId>hamcrest-all</artifactId>
  182. <version>1.3</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.jcraft</groupId>
  186. <artifactId>jsch</artifactId>
  187. <version>0.1.52</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>commons-codec</groupId>
  191. <artifactId>commons-codec</artifactId>
  192. <version>1.5</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>commons-io</groupId>
  196. <artifactId>commons-io</artifactId>
  197. <version>${commons-io.version}</version>
  198. </dependency>
  199. <!-- Mainly for SQLContainer tests -->
  200. <dependency>
  201. <groupId>org.hsqldb</groupId>
  202. <artifactId>hsqldb</artifactId>
  203. <version>2.2.6</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.vaadin</groupId>
  207. <artifactId>vaadin-testbench</artifactId>
  208. <version>4.0.3</version>
  209. </dependency>
  210. <!-- This should be removed once tests have been updated to use lang3 -->
  211. <dependency>
  212. <groupId>commons-lang</groupId>
  213. <artifactId>commons-lang</artifactId>
  214. <version>2.6</version>
  215. </dependency>
  216. <dependency>
  217. <groupId>com.vaadin</groupId>
  218. <artifactId>vaadin-sass-compiler</artifactId>
  219. <version>${vaadin.sass.version}</version>
  220. </dependency>
  221. <dependency>
  222. <groupId>com.vaadin</groupId>
  223. <artifactId>vaadin-buildhelpers</artifactId>
  224. <version>${project.version}</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>org.eclipse.jgit</groupId>
  228. <artifactId>org.eclipse.jgit</artifactId>
  229. <version>3.5.1.201410131835-r</version>
  230. <exclusions>
  231. <exclusion>
  232. <groupId>org.apache.httpcomponents</groupId>
  233. <artifactId>httpclient</artifactId>
  234. </exclusion>
  235. </exclusions>
  236. </dependency>
  237. </dependencies>
  238. <build>
  239. <plugins>
  240. <plugin>
  241. <artifactId>maven-clean-plugin</artifactId>
  242. <configuration>
  243. <filesets>
  244. <fileset>
  245. <directory>result</directory>
  246. </fileset>
  247. </filesets>
  248. </configuration>
  249. </plugin>
  250. <plugin>
  251. <artifactId>maven-antrun-plugin</artifactId>
  252. <executions>
  253. <execution>
  254. <id>war</id>
  255. <phase>package</phase>
  256. <goals>
  257. <goal>run</goal>
  258. </goals>
  259. <!-- <inherited>false</inherited> -->
  260. <configuration>
  261. <target>
  262. <ant antfile="build.xml" target="war">
  263. <property name="build.compiler" value="extJavac"/>
  264. <property name="vaadin.version" value="${project.version}"/>
  265. </ant>
  266. </target>
  267. </configuration>
  268. </execution>
  269. <!--
  270. <execution>
  271. <id>test-tb3</id>
  272. <phase>integration-test</phase>
  273. <goals>
  274. <goal>run</goal>
  275. </goals>
  276. <configuration>
  277. <target>
  278. <ant antfile="build.xml" target="test-tb3">
  279. <property name="browsers.include" value="phantomjs1"/>
  280. <property name="categories.exclude" value="push"/>
  281. <property name="com.vaadin.testbench.max.retries" value="4"/>
  282. <property name="com.vaadin.testbench.screenshot.directory" value="../../vaadin-screenshots"/>
  283. <property name="extraParams" value="-ea"/>
  284. <property name="teamcity.ant.junit-support.enabled" value="false"/>
  285. <property name="useLocalWebDriver" value="true"/>
  286. <property name="vaadin.maven.version" value="7.6.LATEST"/>
  287. <property name="vaadin.version" value="${project.version}"/>
  288. </ant>
  289. </target>
  290. </configuration>
  291. </execution>
  292. -->
  293. </executions>
  294. <dependencies>
  295. <dependency>
  296. <groupId>org.apache.ivy</groupId>
  297. <artifactId>ivy</artifactId>
  298. <version>2.4.0</version>
  299. </dependency>
  300. </dependencies>
  301. </plugin>
  302. <plugin>
  303. <groupId>org.apache.maven.plugins</groupId>
  304. <artifactId>maven-install-plugin</artifactId>
  305. <configuration>
  306. <skip>true</skip>
  307. </configuration>
  308. </plugin>
  309. <plugin>
  310. <groupId>org.apache.maven.plugins</groupId>
  311. <artifactId>maven-deploy-plugin</artifactId>
  312. <configuration>
  313. <skip>true</skip>
  314. </configuration>
  315. </plugin>
  316. </plugins>
  317. </build>
  318. </project>