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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.10-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-test-bean-impl-validation</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>javax.validation</groupId>
  15. <artifactId>validation-api</artifactId>
  16. <version>1.1.0.Final</version>
  17. </dependency>
  18. </dependencies>
  19. <build>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.eclipse.jetty</groupId>
  23. <artifactId>jetty-maven-plugin</artifactId>
  24. <version>${jetty.version}</version>
  25. <configuration>
  26. <scanIntervalSeconds>-1</scanIntervalSeconds>
  27. <stopPort>8081</stopPort>
  28. <stopWait>5</stopWait>
  29. <stopKey>foo</stopKey>
  30. </configuration>
  31. <executions>
  32. <!-- start and stop jetty (running our app) when running
  33. integration tests -->
  34. <execution>
  35. <id>start-jetty</id>
  36. <phase></phase>
  37. </execution>
  38. <execution>
  39. <id>stop-jetty</id>
  40. <phase></phase>
  41. </execution>
  42. </executions>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>