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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.vaadin</groupId>
  7. <artifactId>vaadin-test</artifactId>
  8. <version>8.12-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-test-cdi</artifactId>
  11. <packaging>war</packaging>
  12. <properties>
  13. <jetty.skip>true</jetty.skip>
  14. <wildfly.version>12.0.0.Final</wildfly.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.vaadin</groupId>
  19. <artifactId>vaadin-cdi</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.vaadin</groupId>
  23. <artifactId>vaadin-client-compiled</artifactId>
  24. </dependency>
  25. <!-- CDI API dependency -->
  26. <dependency>
  27. <groupId>javax.enterprise</groupId>
  28. <artifactId>cdi-api</artifactId>
  29. <version>1.2</version>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <finalName>ROOT</finalName>
  34. <plugins>
  35. <plugin>
  36. <groupId>org.wildfly.plugins</groupId>
  37. <artifactId>wildfly-maven-plugin</artifactId>
  38. <version>1.2.2.Final</version>
  39. <executions>
  40. <execution>
  41. <id>start-wildfly</id>
  42. <phase>pre-integration-test</phase>
  43. <goals>
  44. <goal>start</goal>
  45. <goal>deploy</goal>
  46. </goals>
  47. </execution>
  48. <execution>
  49. <id>stop-wildfly</id>
  50. <phase>post-integration-test</phase>
  51. <goals>
  52. <goal>shutdown</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>