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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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. <groupId>com.googlecode.gwtquery</groupId>
  4. <artifactId>gwtquery-project</artifactId>
  5. <packaging>pom</packaging>
  6. <version>1.3.2-SNAPSHOT</version>
  7. <name>Gwt Query Project</name>
  8. <url>http://gwtquery.com</url>
  9. <description>GwtQuery is a jQuery clone written in GWT.</description>
  10. <issueManagement>
  11. <system>Google Code</system>
  12. <url>http://code.google.com/p/gwtquery/issues/list</url>
  13. </issueManagement>
  14. <parent>
  15. <groupId>org.sonatype.oss</groupId>
  16. <artifactId>oss-parent</artifactId>
  17. <version>3</version>
  18. </parent>
  19. <distributionManagement>
  20. <snapshotRepository>
  21. <id>sonatype-nexus-snapshots</id>
  22. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  23. <uniqueVersion>false</uniqueVersion>
  24. </snapshotRepository>
  25. </distributionManagement>
  26. <developers>
  27. <developer>
  28. <id>ray</id>
  29. <name>Ray Cromwell</name>
  30. <email>ray@timefire.com</email>
  31. <roles>
  32. <role>Project Manager</role>
  33. <role>Architect</role>
  34. </roles>
  35. <organization>Timefire.com</organization>
  36. <timezone>-8</timezone>
  37. </developer>
  38. <developer>
  39. <id>manolo</id>
  40. <name>Manuel Carrasco Moñino</name>
  41. <email>manolo@apache.org</email>
  42. <organization>ASF</organization>
  43. <roles>
  44. <role>Developer</role>
  45. </roles>
  46. </developer>
  47. <developer>
  48. <id>julien</id>
  49. <name>Julien Dramaix</name>
  50. <email>julien.dramaix@gmail.com</email>
  51. <roles>
  52. <role>Developer</role>
  53. </roles>
  54. </developer>
  55. </developers>
  56. <scm>
  57. <connection>scm:svn:http://gwtquery.googlecode.com/svn/trunk
  58. </connection>
  59. <developerConnection>scm:svn:https://gwtquery.googlecode.com/svn/trunk
  60. </developerConnection>
  61. <url>http://code.google.com/p/gwtquery/source/browse/trunk</url>
  62. </scm>
  63. <modules>
  64. <module>gwtquery-core</module>
  65. <!-- <module>gwtquery-core-2.1.0</module> -->
  66. <!-- <module>gwtquery-core-2.0.1</module> -->
  67. <!-- <module>samples</module> -->
  68. <!-- <module>devtest</module> -->
  69. </modules>
  70. <pluginRepositories>
  71. <pluginRepository>
  72. <id>repo1</id>
  73. <url>http://repo1.maven.org/maven2</url>
  74. </pluginRepository>
  75. <pluginRepository>
  76. <id>gcupload</id>
  77. <name>Repository for gcupload plugin</name>
  78. <url>http://gwtupload.googlecode.com/svn/mavenrepo</url>
  79. </pluginRepository>
  80. </pluginRepositories>
  81. <build>
  82. <pluginManagement>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-pmd-plugin</artifactId>
  87. <configuration>
  88. <targetJdk>1.5</targetJdk>
  89. </configuration>
  90. </plugin>
  91. </plugins>
  92. </pluginManagement>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.apache.maven.plugins</groupId>
  96. <artifactId>maven-release-plugin</artifactId>
  97. <configuration>
  98. <tagBase>
  99. https://gwtquery.googlecode.com/svn/tags
  100. </tagBase>
  101. <preparationGoals>clean install</preparationGoals>
  102. </configuration>
  103. </plugin>
  104. <plugin>
  105. <groupId>org.apache.maven.plugins</groupId>
  106. <artifactId>maven-compiler-plugin</artifactId>
  107. <configuration>
  108. <source>1.5</source>
  109. <target>1.5</target>
  110. </configuration>
  111. </plugin>
  112. </plugins>
  113. <extensions>
  114. <extension>
  115. <groupId>org.jvnet.wagon-svn</groupId>
  116. <artifactId>wagon-svn</artifactId>
  117. <version>1.8</version>
  118. </extension>
  119. </extensions>
  120. </build>
  121. <reporting>
  122. <plugins>
  123. <plugin>
  124. <groupId>org.codehaus.mojo</groupId>
  125. <artifactId>changelog-maven-plugin</artifactId>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-javadoc-plugin</artifactId>
  130. </plugin>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-jxr-plugin</artifactId>
  134. <configuration>
  135. <aggregate>true</aggregate>
  136. </configuration>
  137. </plugin>
  138. </plugins>
  139. </reporting>
  140. <repositories>
  141. <repository>
  142. <id>repo1</id>
  143. <url>http://repo1.maven.org/maven2</url>
  144. <snapshots>
  145. <enabled>false</enabled>
  146. </snapshots>
  147. </repository>
  148. <repository>
  149. <id>gwtquery-plugins</id>
  150. <url>http://gwtquery-plugins.googlecode.com/svn/mavenrepo</url>
  151. </repository>
  152. <repository>
  153. <id>maven2-repository.dev.java.net</id>
  154. <name>Java.net Repository for Maven</name>
  155. <url>http://download.java.net/maven/2/</url>
  156. </repository>
  157. </repositories>
  158. <properties>
  159. <!-- <gwtversion>2.4.0-dollarpatch</gwtversion> -->
  160. <gwtversion>2.5.0</gwtversion>
  161. <gwtmaven>2.5.0</gwtmaven>
  162. <gqueryclassifier />
  163. <gwt.loglevel>INFO</gwt.loglevel>
  164. <gwt.outputstyle>OBF</gwt.outputstyle>
  165. <gwt.modulesuffix />
  166. <repoId>sonatype-nexus-staging</repoId>
  167. <repoUrl>http://oss.sonatype.org/service/local/staging/deploy/maven2</repoUrl>
  168. </properties>
  169. <profiles>
  170. <profile>
  171. <id>2.1.0</id>
  172. <properties>
  173. <gwtversion>2.1.0</gwtversion>
  174. <gwtmaven>2.1.0</gwtmaven>
  175. <gqueryclassifier>2.1.0</gqueryclassifier>
  176. </properties>
  177. </profile>
  178. <profile>
  179. <id>2.0.1</id>
  180. <properties>
  181. <gwtversion>2.0.1</gwtversion>
  182. <gwtmaven>1.1</gwtmaven>
  183. <gqueryclassifier>2.0.1</gqueryclassifier>
  184. </properties>
  185. </profile>
  186. <profile>
  187. <id>prod</id>
  188. <properties>
  189. <repoUrl>http://oss.sonatype.org/service/local/staging/deploy/maven2</repoUrl>
  190. <repoId>sonatype-nexus-staging</repoId>
  191. <maven.test.skip>true</maven.test.skip>
  192. </properties>
  193. </profile>
  194. <profile>
  195. <id>snap</id>
  196. <properties>
  197. <repoUrl>https://oss.sonatype.org/content/repositories/snapshots</repoUrl>
  198. <repoId>sonatype-nexus-snapshots</repoId>
  199. </properties>
  200. </profile>
  201. <profile>
  202. <id>dev</id>
  203. <properties>
  204. <gwt.outputstyle>PRETTY</gwt.outputstyle>
  205. </properties>
  206. </profile>
  207. <profile>
  208. <id>timefire</id>
  209. <distributionManagement>
  210. <repository>
  211. <uniqueVersion>false</uniqueVersion>
  212. <id>timefire-deploy</id>
  213. <url>svn:https://timefire-repository.googlecode.com/svn/mavenrepo/</url>
  214. </repository>
  215. <snapshotRepository>
  216. <uniqueVersion>false</uniqueVersion>
  217. <id>timefire-snapshots</id>
  218. <url>svn:https://timefire-repository.googlecode.com/svn/mavenrepo/</url>
  219. </snapshotRepository>
  220. </distributionManagement>
  221. </profile>
  222. <profile>
  223. <id>local</id>
  224. <properties>
  225. <repoId>local mavenrepo</repoId>
  226. <repoUrl>file://mavenrepo</repoUrl>
  227. </properties>
  228. <distributionManagement>
  229. <repository>
  230. <uniqueVersion>false</uniqueVersion>
  231. <id>local mavenrepo</id>
  232. <url>file://mavenrepo</url>
  233. </repository>
  234. </distributionManagement>
  235. </profile>
  236. </profiles>
  237. </project>