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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.0-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.vaadin.v7</groupId>
  11. <artifactId>vaadin-compatibility-client</artifactId>
  12. <name>vaadin-compatibility-client</name>
  13. <packaging>jar</packaging>
  14. <url>https://vaadin.com/</url>
  15. <description>Vaadin 7 compatibility package for Vaadin 8</description>
  16. <dependencies>
  17. <!-- Project modules -->
  18. <dependency>
  19. <groupId>com.vaadin</groupId>
  20. <artifactId>vaadin-client</artifactId>
  21. <version>${project.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.vaadin.v7</groupId>
  25. <artifactId>vaadin-compatibility-server</artifactId>
  26. <version>${project.version}</version>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <plugins>
  31. <plugin>
  32. <groupId>org.apache.maven.plugins</groupId>
  33. <artifactId>maven-checkstyle-plugin</artifactId>
  34. <executions>
  35. <execution>
  36. <goals>
  37. <goal>checkstyle</goal>
  38. </goals>
  39. <phase>process-sources</phase>
  40. </execution>
  41. </executions>
  42. </plugin>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-surefire-plugin</artifactId>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>