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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-test</artifactId>
  11. <name>vaadin-test</name>
  12. <packaging>pom</packaging>
  13. <properties>
  14. <failOnMissingWebXml>false</failOnMissingWebXml>
  15. </properties>
  16. <repositories>
  17. <repository>
  18. <id>vaadin-addons</id>
  19. <url>http://maven.vaadin.com/vaadin-addons</url>
  20. </repository>
  21. </repositories>
  22. <dependencies>
  23. <!-- API DEPENDENCIES -->
  24. <!-- Project modules -->
  25. <dependency>
  26. <groupId>com.vaadin</groupId>
  27. <artifactId>vaadin-server</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.vaadin</groupId>
  32. <artifactId>vaadin-themes</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <!-- Servlet 3.0 API -->
  36. <dependency>
  37. <groupId>javax.servlet</groupId>
  38. <artifactId>javax.servlet-api</artifactId>
  39. <version>3.0.1</version>
  40. <scope>provided</scope>
  41. </dependency>
  42. <!-- Testing -->
  43. <dependency>
  44. <groupId>junit</groupId>
  45. <artifactId>junit</artifactId>
  46. <version>4.11</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.hamcrest</groupId>
  51. <artifactId>hamcrest-all</artifactId>
  52. <version>1.3</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.vaadin</groupId>
  57. <artifactId>vaadin-testbench</artifactId>
  58. <version>4.0.3</version>
  59. <scope>test</scope>
  60. </dependency>
  61. </dependencies>
  62. <modules>
  63. <module>widget-set-testutil</module>
  64. <module>default-widget-set</module>
  65. <module>own-widget-set</module>
  66. <module>addon-using-own-widget-set</module>
  67. <module>addon-using-no-defined-widget-set</module>
  68. <module>addon-using-init-param-widget-set</module>
  69. <module>space in directory</module>
  70. <module>vaadinservletconfiguration-widget-set</module>
  71. </modules>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.eclipse.jetty</groupId>
  76. <artifactId>jetty-maven-plugin</artifactId>
  77. <version>${jetty.version}</version>
  78. <configuration>
  79. <scanIntervalSeconds>-1</scanIntervalSeconds>
  80. <stopPort>8081</stopPort>
  81. <stopWait>5</stopWait>
  82. <stopKey>foo</stopKey>
  83. </configuration>
  84. <executions>
  85. <!-- start and stop jetty (running our app) when running
  86. integration tests -->
  87. <execution>
  88. <id>start-jetty</id>
  89. <phase>pre-integration-test</phase>
  90. <goals>
  91. <goal>start</goal>
  92. </goals>
  93. </execution>
  94. <execution>
  95. <id>stop-jetty</id>
  96. <phase>post-integration-test</phase>
  97. <goals>
  98. <goal>stop</goal>
  99. </goals>
  100. </execution>
  101. </executions>
  102. </plugin>
  103. <plugin>
  104. <groupId>com.github.klieber</groupId>
  105. <artifactId>phantomjs-maven-plugin</artifactId>
  106. <executions>
  107. <execution>
  108. <goals>
  109. <goal>install</goal>
  110. </goals>
  111. <configuration>
  112. <version>${phantomjs.version}</version>
  113. </configuration>
  114. </execution>
  115. </executions>
  116. </plugin>
  117. <plugin>
  118. <artifactId>maven-surefire-plugin</artifactId>
  119. </plugin>
  120. <plugin>
  121. <artifactId>maven-failsafe-plugin</artifactId>
  122. <executions>
  123. <execution>
  124. <goals>
  125. <goal>integration-test</goal>
  126. <goal>verify</goal>
  127. </goals>
  128. </execution>
  129. </executions>
  130. <configuration>
  131. <systemPropertyVariables>
  132. <phantomjs.binary.path>${phantomjs.binary}</phantomjs.binary.path>
  133. </systemPropertyVariables>
  134. </configuration>
  135. </plugin>
  136. </plugins>
  137. </build>
  138. </project>