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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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-servlet-containers-test</artifactId>
  8. <version>8.10-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-test-payara-micro-server</artifactId>
  11. <name>Vaadin Payara Micro Test</name>
  12. <packaging>war</packaging>
  13. <properties>
  14. <jetty.skip>true</jetty.skip>
  15. <payara.version>4.1.2.173</payara.version>
  16. <server.name>payara-micro</server.name>
  17. </properties>
  18. <dependencies>
  19. <!-- UI classes and tests from dependencies -->
  20. <dependency>
  21. <groupId>com.vaadin</groupId>
  22. <artifactId>vaadin-test-server-ui</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.vaadin</groupId>
  27. <artifactId>vaadin-test-server-tests</artifactId>
  28. <version>${project.version}</version>
  29. <scope>test</scope>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <!-- Server configuration -->
  35. <plugin>
  36. <groupId>fish.payara.maven.plugins</groupId>
  37. <artifactId>payara-micro-maven-plugin</artifactId>
  38. </plugin>
  39. <!-- Payara Micro starting time is a bit over a minute. Need to wait. -->
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-antrun-plugin</artifactId>
  43. <version>1.8</version>
  44. <executions>
  45. <execution>
  46. <id>wait-for-server-start</id>
  47. <phase>pre-integration-test</phase>
  48. <configuration>
  49. <target>
  50. <echo message="Waiting for Payara Micro server to start" />
  51. <!-- Starting time from a couple of local test runs -->
  52. <sleep seconds="65" />
  53. </target>
  54. </configuration>
  55. <goals>
  56. <goal>run</goal>
  57. </goals>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>