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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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.4.3-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>devtest</artifactId>
  11. <packaging>war</packaging>
  12. <name>dev-mode for testing</name>
  13. <dependencies>
  14. <dependency>
  15. <groupId>${groupId}</groupId>
  16. <artifactId>gwtquery</artifactId>
  17. <version>${version}</version>
  18. <type>jar</type>
  19. <scope>provided</scope>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.google.gwt</groupId>
  23. <artifactId>gwt-user</artifactId>
  24. <version>${gwtversion}</version>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.google.gwt</groupId>
  29. <artifactId>gwt-dev</artifactId>
  30. <version>${gwtversion}</version>
  31. <scope>provided</scope>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.codehaus.mojo</groupId>
  38. <artifactId>gwt-maven-plugin</artifactId>
  39. <version>${gwtmaven}</version>
  40. <configuration>
  41. <gwtVersion>${gwtversion}</gwtVersion>
  42. <modules>
  43. <module>com.google.gwt.query.DevTestRunner</module>
  44. </modules>
  45. <runTarget>test/test.html</runTarget>
  46. <hostedWebapp>target/www</hostedWebapp>
  47. <compileReport>true</compileReport>
  48. </configuration>
  49. <executions>
  50. <execution>
  51. <phase>prepare-package</phase>
  52. <goals>
  53. <goal>compile</goal>
  54. </goals>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. </plugins>
  59. <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
  60. </build>
  61. </project>