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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  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.4.4-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:git:https://code.google.com/p/gwtquery/</connection>
  58. <developerConnection>scm:git:git@github.com:gwtquery/gwtquery.git</developerConnection>
  59. <url>http://code.google.com/p/gwtquery/source/browse/</url>
  60. </scm>
  61. <modules>
  62. <module>gwtquery-core</module>
  63. <module>archetype</module>
  64. </modules>
  65. <pluginRepositories>
  66. <pluginRepository>
  67. <id>repo1</id>
  68. <url>http://repo1.maven.org/maven2</url>
  69. </pluginRepository>
  70. </pluginRepositories>
  71. <build>
  72. <pluginManagement>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-pmd-plugin</artifactId>
  77. <configuration>
  78. <targetJdk>1.6</targetJdk>
  79. </configuration>
  80. </plugin>
  81. </plugins>
  82. </pluginManagement>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-release-plugin</artifactId>
  87. <configuration>
  88. <preparationGoals>clean install</preparationGoals>
  89. </configuration>
  90. </plugin>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-compiler-plugin</artifactId>
  94. <version>3.2</version>
  95. <configuration>
  96. <source>1.6</source>
  97. <target>1.6</target>
  98. </configuration>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. <reporting>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.codehaus.mojo</groupId>
  106. <artifactId>changelog-maven-plugin</artifactId>
  107. </plugin>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-javadoc-plugin</artifactId>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-jxr-plugin</artifactId>
  115. <configuration>
  116. <aggregate>true</aggregate>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </reporting>
  121. <repositories>
  122. <repository>
  123. <id>repo1</id>
  124. <url>http://repo1.maven.org/maven2</url>
  125. <snapshots>
  126. <enabled>false</enabled>
  127. </snapshots>
  128. </repository>
  129. <repository>
  130. <id>sonatype</id>
  131. <url>http://oss.sonatype.org/content/repositories/snapshots</url>
  132. <snapshots><enabled>true</enabled></snapshots>
  133. <releases><enabled>false</enabled></releases>
  134. </repository>
  135. <repository>
  136. <id>gwtquery-plugins</id>
  137. <url>http://gwtquery-plugins.googlecode.com/svn/mavenrepo</url>
  138. </repository>
  139. </repositories>
  140. <properties>
  141. <gwtversion>2.7.0</gwtversion>
  142. <gwtmaven>2.7.0</gwtmaven>
  143. <gqueryclassifier />
  144. <gwt.loglevel>INFO</gwt.loglevel>
  145. <gwt.outputstyle>OBF</gwt.outputstyle>
  146. <gwt.modulesuffix />
  147. <repoId>sonatype-nexus-staging</repoId>
  148. <repoUrl>http://oss.sonatype.org/service/local/staging/deploy/maven2</repoUrl>
  149. </properties>
  150. <profiles>
  151. <profile>
  152. <id>jsquery</id>
  153. <modules>
  154. <module>gwtquery-core</module>
  155. <module>jsquery</module>
  156. </modules>
  157. </profile>
  158. <profile>
  159. <id>samples</id>
  160. <modules>
  161. <module>gwtquery-core</module>
  162. <module>samples</module>
  163. </modules>
  164. </profile>
  165. <profile>
  166. <id>2.1.0</id>
  167. <properties>
  168. <gwtversion>2.1.0</gwtversion>
  169. <gwtmaven>2.1.0</gwtmaven>
  170. <gqueryclassifier>2.1.0</gqueryclassifier>
  171. </properties>
  172. <modules><module>gwtquery-core-2.0.1</module></modules>
  173. </profile>
  174. <profile>
  175. <id>2.0.1</id>
  176. <properties>
  177. <gwtversion>2.0.1</gwtversion>
  178. <gwtmaven>1.1</gwtmaven>
  179. <gqueryclassifier>2.0.1</gqueryclassifier>
  180. </properties>
  181. <modules><module>gwtquery-core-2.1.0</module></modules>
  182. </profile>
  183. <profile>
  184. <id>prod</id>
  185. <properties>
  186. <repoUrl>http://oss.sonatype.org/service/local/staging/deploy/maven2</repoUrl>
  187. <repoId>sonatype-nexus-staging</repoId>
  188. <maven.test.skip>true</maven.test.skip>
  189. </properties>
  190. </profile>
  191. <profile>
  192. <id>snap</id>
  193. <properties>
  194. <repoUrl>https://oss.sonatype.org/content/repositories/snapshots</repoUrl>
  195. <repoId>sonatype-nexus-snapshots</repoId>
  196. </properties>
  197. </profile>
  198. <profile>
  199. <id>dev</id>
  200. <properties>
  201. <gwt.outputstyle>PRETTY</gwt.outputstyle>
  202. </properties>
  203. </profile>
  204. <profile>
  205. <id>timefire</id>
  206. <distributionManagement>
  207. <repository>
  208. <uniqueVersion>false</uniqueVersion>
  209. <id>timefire-deploy</id>
  210. <url>svn:https://timefire-repository.googlecode.com/svn/mavenrepo/</url>
  211. </repository>
  212. <snapshotRepository>
  213. <uniqueVersion>false</uniqueVersion>
  214. <id>timefire-snapshots</id>
  215. <url>svn:https://timefire-repository.googlecode.com/svn/mavenrepo/</url>
  216. </snapshotRepository>
  217. </distributionManagement>
  218. </profile>
  219. <profile>
  220. <id>local</id>
  221. <properties>
  222. <repoId>local mavenrepo</repoId>
  223. <repoUrl>file://mavenrepo</repoUrl>
  224. </properties>
  225. <distributionManagement>
  226. <repository>
  227. <uniqueVersion>false</uniqueVersion>
  228. <id>local mavenrepo</id>
  229. <url>file://mavenrepo</url>
  230. </repository>
  231. </distributionManagement>
  232. </profile>
  233. </profiles>
  234. </project>