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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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-root</artifactId>
  8. <version>8.15-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-testbench-api</artifactId>
  11. <name>vaadin-testbench-api</name>
  12. <packaging>jar</packaging>
  13. <url>https://vaadin.com/</url>
  14. <description>Vaadin Framework Element API for TestBench</description>
  15. <properties>
  16. <testbench.core.version>${vaadin.testbench.version}</testbench.core.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.vaadin</groupId>
  21. <artifactId>vaadin-testbench-core</artifactId>
  22. <version>${testbench.core.version}</version>
  23. </dependency>
  24. </dependencies>
  25. <repositories>
  26. <repository>
  27. <id>vaadin-addons</id>
  28. <url>https://maven.vaadin.com/vaadin-addons</url>
  29. </repository>
  30. </repositories>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.apache.maven.plugins</groupId>
  35. <artifactId>maven-checkstyle-plugin</artifactId>
  36. <executions>
  37. <execution>
  38. <goals>
  39. <goal>checkstyle</goal>
  40. </goals>
  41. <phase>process-sources</phase>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-source-plugin</artifactId>
  48. <executions>
  49. <execution>
  50. <id>attach-sources</id>
  51. <goals>
  52. <goal>jar</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>