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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.12-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>net.revelc.code.formatter</groupId>
  35. <artifactId>formatter-maven-plugin</artifactId>
  36. </plugin>
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-checkstyle-plugin</artifactId>
  40. <executions>
  41. <execution>
  42. <goals>
  43. <goal>checkstyle</goal>
  44. </goals>
  45. <phase>process-sources</phase>
  46. </execution>
  47. </executions>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-source-plugin</artifactId>
  52. <executions>
  53. <execution>
  54. <id>attach-sources</id>
  55. <goals>
  56. <goal>jar</goal>
  57. </goals>
  58. </execution>
  59. </executions>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>