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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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>gwtquery</artifactId>
  11. <packaging>jar</packaging>
  12. <name>Gwt Query Core API</name>
  13. <url>http://gwtquery.com</url>
  14. <dependencies>
  15. <dependency>
  16. <groupId>junit</groupId>
  17. <artifactId>junit</artifactId>
  18. <version>3.8.1</version>
  19. <type>jar</type>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.google.gwt</groupId>
  24. <artifactId>gwt-user</artifactId>
  25. <version>${gwtversion}</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.google.gwt</groupId>
  30. <artifactId>gwt-dev</artifactId>
  31. <version>${gwtversion}</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. </dependencies>
  35. <build>
  36. <resources>
  37. <resource>
  38. <directory>${basedir}/src/main/java</directory>
  39. </resource>
  40. <resource>
  41. <directory>${basedir}/src/main/resources</directory>
  42. </resource>
  43. </resources>
  44. <testResources>
  45. <testResource>
  46. <directory>${basedir}/src/test/java</directory>
  47. </testResource>
  48. <testResource>
  49. <directory>${basedir}/src/test/resources</directory>
  50. </testResource>
  51. </testResources>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.apache.maven.plugins</groupId>
  55. <artifactId>maven-surefire-plugin</artifactId>
  56. <configuration>
  57. <skipTests>false</skipTests>
  58. <additionalClasspathElements>
  59. <additionalClasspathElement>
  60. ${project.build.sourceDirectory}
  61. </additionalClasspathElement>
  62. <additionalClasspathElement>
  63. ${project.build.testSourceDirectory}
  64. </additionalClasspathElement>
  65. </additionalClasspathElements>
  66. <!-- Needed to run gwt-Tests -->
  67. <useManifestOnlyJar>false</useManifestOnlyJar>
  68. <!-- Necessary to run tests with return the same getModuleName-->
  69. <forkMode>always</forkMode>
  70. <!-- This makes emma:emma fail -->
  71. <!-- <useSystemClassLoader>true</useSystemClassLoader> -->
  72. <systemProperties>
  73. <property>
  74. <name>gwt.args</name>
  75. <value>-out target/www</value>
  76. </property>
  77. </systemProperties>
  78. </configuration>
  79. </plugin>
  80. <plugin>
  81. <groupId>org.riedelcastro</groupId>
  82. <artifactId>gcupload-maven-plugin</artifactId>
  83. <version>0.9</version>
  84. <configuration>
  85. <allowSnapshots>true</allowSnapshots>
  86. <projectName>${artifactId}</projectName>
  87. <uploads>
  88. <upload>
  89. <extensions>jar</extensions>
  90. <labels>Featured</labels>
  91. </upload>
  92. </uploads>
  93. </configuration>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>