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

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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-wildfly8-server</artifactId>
  11. <name>Vaadin Wildfly 8 Test</name>
  12. <packaging>war</packaging>
  13. <properties>
  14. <jetty.skip>true</jetty.skip>
  15. <wildfly.version>8.2.1.Final</wildfly.version>
  16. <server.name>wildfly8</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>org.wildfly.plugins</groupId>
  37. <artifactId>wildfly-maven-plugin</artifactId>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>