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

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.12-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. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.vaadin</groupId>
  24. <artifactId>vaadin-server</artifactId>
  25. <version>${vaadin.version}</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.vaadin</groupId>
  30. <artifactId>vaadin-testbench-api</artifactId>
  31. <version>${vaadin.version}</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <version>4.12</version>
  38. <scope>provided</scope>
  39. </dependency>
  40. </dependencies>
  41. </project>