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

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <parent>
  6. <groupId>com.vaadin</groupId>
  7. <artifactId>vaadin-test</artifactId>
  8. <version>8.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>vaadin-test-addon-using-own-widget-set</artifactId>
  11. <packaging>war</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.vaadin</groupId>
  15. <artifactId>vaadin-test-widget-set-testutil</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.vaadin</groupId>
  19. <artifactId>vaadin-context-menu</artifactId>
  20. <version>${contextmenu.version}</version>
  21. </dependency>
  22. </dependencies>
  23. <build>
  24. <plugins>
  25. <plugin>
  26. <groupId>com.vaadin</groupId>
  27. <artifactId>vaadin-maven-plugin</artifactId>
  28. <version>${vaadin.plugin.version}</version>
  29. <executions>
  30. <execution>
  31. <goals>
  32. <goal>resources</goal>
  33. <goal>update-widgetset</goal>
  34. <goal>compile</goal>
  35. </goals>
  36. </execution>
  37. </executions>
  38. </plugin>
  39. </plugins>
  40. </build>
  41. </project>