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

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