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.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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.12-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-test-wildfly-swarm-server</artifactId>
  11. <name>Vaadin Wildfly Swarm Test</name>
  12. <packaging>war</packaging>
  13. <properties>
  14. <jetty.skip>true</jetty.skip>
  15. <wildfly.swarm.version>2017.9.5</wildfly.swarm.version>
  16. <context.path>/</context.path>
  17. <server.name>wildfly-swarm</server.name>
  18. </properties>
  19. <dependencies>
  20. <!-- UI classes and tests from dependencies -->
  21. <dependency>
  22. <groupId>com.vaadin</groupId>
  23. <artifactId>vaadin-test-server-ui</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.vaadin</groupId>
  28. <artifactId>vaadin-test-server-tests</artifactId>
  29. <version>${project.version}</version>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <!-- Server configuration -->
  36. <plugin>
  37. <groupId>org.wildfly.swarm</groupId>
  38. <artifactId>wildfly-swarm-plugin</artifactId>
  39. <version>${wildfly.swarm.version}</version>
  40. <executions>
  41. <execution>
  42. <id>start-swarm</id>
  43. <phase>pre-integration-test</phase>
  44. <goals>
  45. <goal>package</goal>
  46. <goal>start</goal>
  47. </goals>
  48. </execution>
  49. <execution>
  50. <id>stop-swarm</id>
  51. <phase>post-integration-test</phase>
  52. <goals>
  53. <goal>stop</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. <configuration>
  58. <useUberJar>true</useUberJar>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>