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

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