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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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-liberty-javaee-server</artifactId>
  11. <name>Vaadin Liberty JavaEE7 Test</name>
  12. <packaging>war</packaging>
  13. <properties>
  14. <jetty.skip>true</jetty.skip>
  15. <liberty.version>17.0.0.1</liberty.version>
  16. <liberty.profile>wlp-javaee7</liberty.profile>
  17. <server.name>liberty-javaee</server.name>
  18. </properties>
  19. <dependencies>
  20. <!-- UI classes and tests from dependencies -->
  21. <dependency>
  22. <groupId>com.vaadin</groupId>
  23. <artifactId>vaadin-test-server-ui</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.vaadin</groupId>
  28. <artifactId>vaadin-test-server-tests</artifactId>
  29. <version>${project.version}</version>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <plugins>
  35. <plugin>
  36. <artifactId>maven-failsafe-plugin</artifactId>
  37. <configuration>
  38. <systemPropertyVariables>
  39. <!-- FIXME: Fix liberty to use the same port as everything else. -->
  40. <deployment.url>http://localhost:9080</deployment.url>
  41. </systemPropertyVariables>
  42. </configuration>
  43. </plugin>
  44. <!-- Server configuration -->
  45. <plugin>
  46. <groupId>net.wasdev.wlp.maven.plugins</groupId>
  47. <artifactId>liberty-maven-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>