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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>7.7-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. <version>${project.version}</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.vaadin</groupId>
  20. <artifactId>vaadin-test-widget-set-testutil</artifactId>
  21. <version>${project.version}</version>
  22. <type>test-jar</type>
  23. <scope>test</scope>
  24. </dependency>
  25. <!-- Included to ensure AppWidgetset is an option -->
  26. <dependency>
  27. <groupId>com.vaadin.addon</groupId>
  28. <artifactId>vaadin-context-menu</artifactId>
  29. <version>0.7.4</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.vaadin</groupId>
  33. <artifactId>vaadin-client-compiled</artifactId>
  34. </dependency>
  35. </dependencies>
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>com.vaadin</groupId>
  40. <artifactId>vaadin-maven-plugin</artifactId>
  41. <executions>
  42. <execution>
  43. <goals>
  44. <goal>resources</goal>
  45. <goal>update-widgetset</goal>
  46. <goal>compile</goal>
  47. </goals>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. </plugins>
  52. </build>
  53. </project>