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

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. <groupId>com.vaadin</groupId>
  6. <artifactId>vaadin-test-widget-set-testutil</artifactId>
  7. <version>8.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <!--
  10. This module does not inherit the vaadin-test on purpose. It is done
  11. so to allow installing this module as stand-alone and used when running any
  12. of the test modules without requiring everything to be installed.
  13. -->
  14. <properties>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. <vaadin.version>${project.version}</vaadin.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.vaadin</groupId>
  22. <artifactId>vaadin-server</artifactId>
  23. <version>${vaadin.version}</version>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.vaadin</groupId>
  28. <artifactId>vaadin-testbench-api</artifactId>
  29. <version>${vaadin.version}</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>junit</groupId>
  34. <artifactId>junit</artifactId>
  35. <version>4.12</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. </dependencies>
  39. </project>