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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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.5-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:git@github.com:ArcBees/gwtquery.git</connection>
  58. <developerConnection>scm:git:git@github.com:ArcBees/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>https://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 -DskipTests</preparationGoals>
  89. <arguments>-DskipTests</arguments>
  90. </configuration>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-compiler-plugin</artifactId>
  95. <version>3.5</version>
  96. <configuration>
  97. <source>1.7</source>
  98. <target>1.7</target>
  99. </configuration>
  100. </plugin>
  101. <plugin>
  102. <groupId>org.apache.maven.plugins</groupId>
  103. <artifactId>maven-javadoc-plugin</artifactId>
  104. <configuration>
  105. <additionalparam>-Xdoclint:none</additionalparam>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. <reporting>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.codehaus.mojo</groupId>
  114. <artifactId>changelog-maven-plugin</artifactId>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-javadoc-plugin</artifactId>
  119. <configuration>
  120. <additionalparam>-Xdoclint:none</additionalparam>
  121. </configuration>
  122. </plugin>
  123. <plugin>
  124. <groupId>org.apache.maven.plugins</groupId>
  125. <artifactId>maven-jxr-plugin</artifactId>
  126. <configuration>
  127. <aggregate>true</aggregate>
  128. </configuration>
  129. </plugin>
  130. </plugins>
  131. </reporting>
  132. <repositories>
  133. <repository>
  134. <id>repo1</id>
  135. <url>https://repo1.maven.org/maven2</url>
  136. <snapshots>
  137. <enabled>false</enabled>
  138. </snapshots>
  139. </repository>
  140. <repository>
  141. <id>sonatype</id>
  142. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  143. <snapshots><enabled>true</enabled></snapshots>
  144. <releases><enabled>false</enabled></releases>
  145. </repository>
  146. <repository>
  147. <id>google-snapshots</id>
  148. <url>https://oss.sonatype.org/content/repositories/google-snapshots</url>
  149. <snapshots><enabled>true</enabled></snapshots>
  150. <releases><enabled>true</enabled></releases>
  151. </repository>
  152. <repository>
  153. <id>gwtquery-plugins</id>
  154. <url>https://gwtquery-plugins.googlecode.com/svn/mavenrepo</url>
  155. </repository>
  156. </repositories>
  157. <properties>
  158. <gwtversion>2.8.1</gwtversion>
  159. <gwtmaven>2.8.1</gwtmaven>
  160. <gqueryclassifier />
  161. <gwt.loglevel>INFO</gwt.loglevel>
  162. <gwt.outputstyle>OBF</gwt.outputstyle>
  163. <gwt.modulesuffix />
  164. <repoId>sonatype-nexus-staging</repoId>
  165. <repoUrl>http://oss.sonatype.org/service/local/staging/deploy/maven2</repoUrl>
  166. </properties>
  167. <profiles>
  168. <profile>
  169. <id>jsquery</id>
  170. <modules>
  171. <module>gwtquery-core</module>
  172. <module>jsquery</module>
  173. </modules>
  174. </profile>
  175. <profile>
  176. <id>samples</id>
  177. <modules>
  178. <module>gwtquery-core</module>
  179. <module>samples</module>
  180. </modules>
  181. </profile>
  182. <profile>
  183. <id>2.1.0</id>
  184. <properties>
  185. <gwtversion>2.1.0</gwtversion>
  186. <gwtmaven>2.1.0</gwtmaven>
  187. <gqueryclassifier>2.1.0</gqueryclassifier>
  188. </properties>
  189. <modules><module>gwtquery-core-2.0.1</module></modules>
  190. </profile>
  191. <profile>
  192. <id>2.0.1</id>
  193. <properties>
  194. <gwtversion>2.0.1</gwtversion>
  195. <gwtmaven>1.1</gwtmaven>
  196. <gqueryclassifier>2.0.1</gqueryclassifier>
  197. </properties>
  198. <modules><module>gwtquery-core-2.1.0</module></modules>
  199. </profile>
  200. <profile>
  201. <id>prod</id>
  202. <properties>
  203. <repoUrl>http://oss.sonatype.org/service/local/staging/deploy/maven2</repoUrl>
  204. <repoId>sonatype-nexus-staging</repoId>
  205. <maven.test.skip>true</maven.test.skip>
  206. </properties>
  207. </profile>
  208. <profile>
  209. <id>snap</id>
  210. <properties>
  211. <repoUrl>https://oss.sonatype.org/content/repositories/snapshots</repoUrl>
  212. <repoId>sonatype-nexus-snapshots</repoId>
  213. </properties>
  214. </profile>
  215. <profile>
  216. <id>dev</id>
  217. <properties>
  218. <gwt.outputstyle>PRETTY</gwt.outputstyle>
  219. </properties>
  220. </profile>
  221. <profile>
  222. <id>timefire</id>
  223. <distributionManagement>
  224. <repository>
  225. <uniqueVersion>false</uniqueVersion>
  226. <id>timefire-deploy</id>
  227. <url>svn:https://timefire-repository.googlecode.com/svn/mavenrepo/</url>
  228. </repository>
  229. <snapshotRepository>
  230. <uniqueVersion>false</uniqueVersion>
  231. <id>timefire-snapshots</id>
  232. <url>svn:https://timefire-repository.googlecode.com/svn/mavenrepo/</url>
  233. </snapshotRepository>
  234. </distributionManagement>
  235. </profile>
  236. <profile>
  237. <id>local</id>
  238. <properties>
  239. <repoId>local mavenrepo</repoId>
  240. <repoUrl>file://mavenrepo</repoUrl>
  241. </properties>
  242. <distributionManagement>
  243. <repository>
  244. <uniqueVersion>false</uniqueVersion>
  245. <id>local mavenrepo</id>
  246. <url>file://mavenrepo</url>
  247. </repository>
  248. </distributionManagement>
  249. </profile>
  250. </profiles>
  251. </project>