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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. <artifactId>devtest</artifactId>
  11. <packaging>jar</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. <resources>
  36. <resource>
  37. <directory>${basedir}/src/main/java</directory>
  38. </resource>
  39. <resource>
  40. <directory>${basedir}/src/main/resources</directory>
  41. </resource>
  42. </resources>
  43. <testResources>
  44. <testResource>
  45. <directory>${basedir}/src/test/java</directory>
  46. </testResource>
  47. <testResource>
  48. <directory>${basedir}/src/test/resources</directory>
  49. </testResource>
  50. </testResources>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.codehaus.mojo</groupId>
  54. <artifactId>gwt-maven-plugin</artifactId>
  55. <version>${gwtmaven}</version>
  56. <configuration>
  57. <!-- <style>PRETTY</style> -->
  58. <gwtVersion>${gwtversion}</gwtVersion>
  59. <modules>
  60. <module>com.google.gwt.query.DevTestRunner</module>
  61. </modules>
  62. <runTarget>test/test.html</runTarget>
  63. <hostedWebapp>target/www</hostedWebapp>
  64. <soyc>true</soyc>
  65. </configuration>
  66. </plugin>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-eclipse-plugin</artifactId>
  70. <configuration>
  71. <downloadSources>true</downloadSources>
  72. <downloadJavadocs>false</downloadJavadocs>
  73. <additionalBuildcommands>
  74. <buildCommand>
  75. <name>com.google.gwt.eclipse.core.gwtProjectValidator</name>
  76. </buildCommand>
  77. </additionalBuildcommands>
  78. <additionalProjectnatures>
  79. <projectnature>com.google.gwt.eclipse.core.gwtNature</projectnature>
  80. </additionalProjectnatures>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. <outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
  85. </build>
  86. </project>