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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.11-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-test-generic-integration</artifactId>
  11. <name>vaadin-test-generic-integration</name>
  12. <packaging>war</packaging>
  13. <properties>
  14. <jetty.skip>true</jetty.skip>
  15. </properties>
  16. <!-- This module exists only to run the Ant based server tests.
  17. It will be removed in the future. -->
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.vaadin</groupId>
  21. <artifactId>vaadin-test-server-ui</artifactId>
  22. <version>${project.version}</version>
  23. </dependency>
  24. </dependencies>
  25. <build>
  26. <plugins>
  27. <!-- Extract test classes for ant script to use -->
  28. <plugin>
  29. <artifactId>maven-dependency-plugin</artifactId>
  30. <executions>
  31. <execution>
  32. <id>unpack-tests</id>
  33. <phase>package</phase>
  34. <configuration>
  35. <artifactItems>
  36. <artifactItem>
  37. <groupId>com.vaadin</groupId>
  38. <artifactId>vaadin-test-server-tests</artifactId>
  39. <version>${project.version}</version>
  40. <includes>**/*.class</includes>
  41. </artifactItem>
  42. </artifactItems>
  43. <outputDirectory>${project.build.directory}/test-classes</outputDirectory>
  44. </configuration>
  45. <goals>
  46. <goal>unpack</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. <plugin>
  52. <artifactId>maven-deploy-plugin</artifactId>
  53. <configuration>
  54. <skip>true</skip>
  55. </configuration>
  56. </plugin>
  57. <plugin>
  58. <artifactId>maven-surefire-plugin</artifactId>
  59. <configuration>
  60. <skip>true</skip>
  61. </configuration>
  62. </plugin>
  63. <plugin>
  64. <artifactId>maven-failsafe-plugin</artifactId>
  65. <!-- Currently tested using an Ant script. -->
  66. <configuration>
  67. <skip>true</skip>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <artifactId>maven-war-plugin</artifactId>
  72. <!-- This execution builds an additional .war file with JBoss
  73. 6 specific descriptor -->
  74. <executions>
  75. <execution>
  76. <id>jboss6-war</id>
  77. <phase>package</phase>
  78. <goals>
  79. <goal>war</goal>
  80. </goals>
  81. <configuration>
  82. <classifier>jboss6</classifier>
  83. <webResources>
  84. <resource>
  85. <directory>src/main/jboss-6</directory>
  86. </resource>
  87. </webResources>
  88. </configuration>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>