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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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-tomcat7-server</artifactId>
  11. <name>Vaadin Tomcat 7 Test</name>
  12. <packaging>war</packaging>
  13. <properties>
  14. <jetty.skip>true</jetty.skip>
  15. <tomcat.version>7.0.82</tomcat.version>
  16. <server.name>tomcat7</server.name>
  17. </properties>
  18. <dependencies>
  19. <!-- UI classes and tests from dependencies -->
  20. <dependency>
  21. <groupId>com.vaadin</groupId>
  22. <artifactId>vaadin-test-server-ui</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.vaadin</groupId>
  27. <artifactId>vaadin-test-server-tests</artifactId>
  28. <version>${project.version}</version>
  29. <scope>test</scope>
  30. </dependency>
  31. </dependencies>
  32. <build>
  33. <plugins>
  34. <!-- Server configuration -->
  35. <plugin>
  36. <groupId>org.codehaus.cargo</groupId>
  37. <artifactId>cargo-maven2-plugin</artifactId>
  38. <configuration>
  39. <container>
  40. <containerId>tomcat7x</containerId>
  41. <artifactInstaller>
  42. <groupId>org.apache.tomcat</groupId>
  43. <artifactId>tomcat</artifactId>
  44. <version>${tomcat.version}</version>
  45. </artifactInstaller>
  46. </container>
  47. </configuration>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>