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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.2-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-test-cdi</artifactId>
  11. <packaging>war</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.vaadin</groupId>
  15. <artifactId>vaadin-cdi</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.vaadin</groupId>
  19. <artifactId>vaadin-client-compiled</artifactId>
  20. </dependency>
  21. <!-- CDI API dependency -->
  22. <dependency>
  23. <groupId>javax.enterprise</groupId>
  24. <artifactId>cdi-api</artifactId>
  25. <version>1.2</version>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <finalName>ROOT</finalName>
  30. <plugins>
  31. <!-- Disable jetty-plugin -->
  32. <plugin>
  33. <groupId>org.eclipse.jetty</groupId>
  34. <artifactId>jetty-maven-plugin</artifactId>
  35. <version>${jetty.version}</version>
  36. <executions>
  37. <execution>
  38. <id>start-jetty</id>
  39. <phase />
  40. </execution>
  41. <execution>
  42. <id>stop-jetty</id>
  43. <phase />
  44. </execution>
  45. </executions>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.wildfly.plugins</groupId>
  49. <artifactId>wildfly-maven-plugin</artifactId>
  50. <version>1.0.2.Final</version>
  51. <executions>
  52. <execution>
  53. <id>start-wildfly</id>
  54. <phase>pre-integration-test</phase>
  55. <goals>
  56. <goal>start</goal>
  57. <goal>deploy</goal>
  58. </goals>
  59. </execution>
  60. <execution>
  61. <id>stop-wildfly</id>
  62. <phase>post-integration-test</phase>
  63. <goals>
  64. <goal>shutdown</goal>
  65. </goals>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>