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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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-test</artifactId>
  8. <version>8.2-SNAPSHOT</version>
  9. <relativePath>../..</relativePath>
  10. </parent>
  11. <artifactId>vaadin-test-generic-integration</artifactId>
  12. <name>vaadin-test-generic-integration</name>
  13. <packaging>war</packaging>
  14. <properties>
  15. <jetty.skip>true</jetty.skip>
  16. </properties>
  17. <dependencies>
  18. <!-- Project modules -->
  19. <dependency>
  20. <groupId>com.vaadin</groupId>
  21. <artifactId>vaadin-compatibility-server</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.vaadin</groupId>
  25. <artifactId>vaadin-compatibility-client-compiled</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.vaadin</groupId>
  29. <artifactId>vaadin-compatibility-themes</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.vaadin</groupId>
  33. <artifactId>vaadin-client-compiled</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.vaadin</groupId>
  37. <artifactId>vaadin-push</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.vaadin</groupId>
  41. <artifactId>vaadin-testbench-api</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. </dependencies>
  45. <build>
  46. <plugins>
  47. <!--TODO run this on different servers -->
  48. <plugin>
  49. <groupId>org.eclipse.jetty</groupId>
  50. <artifactId>jetty-maven-plugin</artifactId>
  51. <version>${jetty.version}</version>
  52. <configuration>
  53. <webApp>
  54. <contextPath>/demo</contextPath>
  55. </webApp>
  56. </configuration>
  57. </plugin>
  58. <plugin>
  59. <artifactId>maven-deploy-plugin</artifactId>
  60. <configuration>
  61. <skip>true</skip>
  62. </configuration>
  63. </plugin>
  64. <plugin>
  65. <artifactId>maven-surefire-plugin</artifactId>
  66. <configuration>
  67. <skip>true</skip>
  68. </configuration>
  69. </plugin>
  70. <plugin>
  71. <artifactId>maven-failsafe-plugin</artifactId>
  72. <!-- Currently tested using an Ant script. -->
  73. <configuration>
  74. <skip>true</skip>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <artifactId>maven-war-plugin</artifactId>
  79. <!-- This execution builds an additional .war file with JBoss
  80. 6 specific descriptor -->
  81. <executions>
  82. <execution>
  83. <id>jboss6-war</id>
  84. <phase>package</phase>
  85. <goals>
  86. <goal>war</goal>
  87. </goals>
  88. <configuration>
  89. <classifier>jboss6</classifier>
  90. <webResources>
  91. <resource>
  92. <directory>src/main/jboss-6</directory>
  93. </resource>
  94. </webResources>
  95. </configuration>
  96. </execution>
  97. </executions>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>