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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>com.googlecode.gwtquery</groupId>
  5. <artifactId>gwtquery-project</artifactId>
  6. <version>1.0.0-SNAPSHOT</version>
  7. </parent>
  8. <artifactId>gwtquery</artifactId>
  9. <packaging>jar</packaging>
  10. <name>Gwt Query Core API</name>
  11. <url>http://gwtquery.com</url>
  12. <dependencies>
  13. <dependency>
  14. <groupId>junit</groupId>
  15. <artifactId>junit</artifactId>
  16. <version>4.7</version>
  17. <type>jar</type>
  18. <scope>test</scope>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.google.gwt</groupId>
  22. <artifactId>gwt-user</artifactId>
  23. <version>${gwtversion}</version>
  24. <scope>provided</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.google.gwt</groupId>
  28. <artifactId>gwt-dev</artifactId>
  29. <version>${gwtversion}</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <resources>
  35. <resource>
  36. <directory>${basedir}/src/main/java</directory>
  37. </resource>
  38. <resource>
  39. <directory>${basedir}/src/main/resources</directory>
  40. </resource>
  41. </resources>
  42. <testResources>
  43. <testResource>
  44. <directory>${basedir}/src/test/java</directory>
  45. </testResource>
  46. <testResource>
  47. <directory>${basedir}/src/test/resources</directory>
  48. </testResource>
  49. </testResources>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.codehaus.mojo</groupId>
  53. <artifactId>emma-maven-plugin</artifactId>
  54. <version>1.0-alpha-1</version>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-surefire-plugin</artifactId>
  59. <configuration>
  60. <skipTests>false</skipTests>
  61. <additionalClasspathElements>
  62. <additionalClasspathElement>
  63. ${project.build.sourceDirectory}
  64. </additionalClasspathElement>
  65. <additionalClasspathElement>
  66. ${project.build.testSourceDirectory}
  67. </additionalClasspathElement>
  68. </additionalClasspathElements>
  69. <!-- Needed to run gwt-Tests -->
  70. <useManifestOnlyJar>false</useManifestOnlyJar>
  71. <!-- Necessary to run tests with return the same getModuleName-->
  72. <forkMode>always</forkMode>
  73. <!-- This makes emma:emma fail -->
  74. <!-- <useSystemClassLoader>true</useSystemClassLoader> -->
  75. <parallel>both</parallel>
  76. <threadCount>6</threadCount>
  77. <systemProperties>
  78. <property>
  79. <name>gwt.args</name>
  80. <value>-out target/www-junit</value>
  81. <name>gwt.noserver</name>
  82. <value>true</value>
  83. </property>
  84. </systemProperties>
  85. </configuration>
  86. </plugin>
  87. <plugin>
  88. <groupId>org.riedelcastro</groupId>
  89. <artifactId>gcupload-maven-plugin</artifactId>
  90. <version>0.9</version>
  91. <configuration>
  92. <allowSnapshots>true</allowSnapshots>
  93. <projectName>${artifactId}</projectName>
  94. <uploads>
  95. <upload>
  96. <extensions>jar</extensions>
  97. <labels>Featured</labels>
  98. </upload>
  99. </uploads>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>