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 3.9KB

13 vuotta sitten
15 vuotta sitten
13 vuotta sitten
15 vuotta sitten
13 vuotta sitten
13 vuotta sitten
13 vuotta sitten
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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.googlecode.gwtquery</groupId>
  7. <artifactId>gwtquery-project</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. </parent>
  10. <name>GwtQuery Samples</name>
  11. <artifactId>gwtquery-samples</artifactId>
  12. <packaging>war</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${groupId}</groupId>
  16. <artifactId>gwtquery</artifactId>
  17. <version>${version}</version>
  18. <classifier>2.0.1</classifier>
  19. <type>jar</type>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.gwt</groupId>
  24. <artifactId>gwt-user</artifactId>
  25. <version>2.0.1</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.google.gwt</groupId>
  30. <artifactId>gwt-dev</artifactId>
  31. <version>2.0.1</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.codehaus.mojo</groupId>
  39. <artifactId>gwt-maven-plugin</artifactId>
  40. <version>1.1</version>
  41. <configuration>
  42. <logLevel>${gwt.loglevel}</logLevel>
  43. <style>${gwt.outputstyle}</style>
  44. <gwtVersion>${gwtversion}</gwtVersion>
  45. <compileReport>true</compileReport>
  46. <modules>
  47. <module>gwtquery.samples.GwtQueryBench</module>
  48. <module>gwtquery.samples.JsCollectionVsJavaCollection</module>
  49. <module>gwtquery.samples.GwtQuerySample</module>
  50. <module>gwtquery.samples.GwtQueryDemo</module>
  51. <module>gwtquery.samples.GwtQueryEffects</module>
  52. <module>gwtquery.samples.GwtQueryEffectsMin</module>
  53. <module>gwtquery.samples.GwtQueryImageZoom</module>
  54. <module>gwtquery.samples.FadeEffectsSample</module>
  55. <module>gwtquery.samples.SlideEffectsSample</module>
  56. <module>gwtquery.samples.AnimationsSample</module>
  57. <module>gwtquery.samples.ColorEffects</module>
  58. <module>gwtquery.samples.HomePageSample</module>
  59. </modules>
  60. </configuration>
  61. <executions>
  62. <execution>
  63. <phase>prepare-package</phase>
  64. <goals>
  65. <goal>compile</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. <plugin>
  71. <groupId>org.apache.maven.plugins</groupId>
  72. <artifactId>maven-eclipse-plugin</artifactId>
  73. <configuration>
  74. <downloadSources>true</downloadSources>
  75. <downloadJavadocs>true</downloadJavadocs>
  76. <additionalBuildcommands>
  77. <buildCommand>
  78. <name>
  79. com.google.gwt.eclipse.core.gwtProjectValidator
  80. </name>
  81. </buildCommand>
  82. </additionalBuildcommands>
  83. <additionalProjectnatures>
  84. <projectnature>com.google.gwt.eclipse.core.gwtNature
  85. </projectnature>
  86. </additionalProjectnatures>
  87. </configuration>
  88. </plugin>
  89. </plugins>
  90. </build>
  91. </project>