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

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