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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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-init-param-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. <!-- Included to ensure AppWidgetset is an option -->
  18. <dependency>
  19. <groupId>com.vaadin</groupId>
  20. <artifactId>vaadin-context-menu</artifactId>
  21. <version>${contextmenu.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.vaadin</groupId>
  25. <artifactId>vaadin-client-compiled</artifactId>
  26. </dependency>
  27. </dependencies>
  28. <build>
  29. <plugins>
  30. <plugin>
  31. <groupId>com.vaadin</groupId>
  32. <artifactId>vaadin-maven-plugin</artifactId>
  33. <version>${vaadin.plugin.version}</version>
  34. <executions>
  35. <execution>
  36. <goals>
  37. <goal>resources</goal>
  38. <goal>update-widgetset</goal>
  39. <goal>compile</goal>
  40. </goals>
  41. </execution>
  42. </executions>
  43. </plugin>
  44. </plugins>
  45. </build>
  46. </project>