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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. <groupId>com.googlecode.gwtquery</groupId>
  6. <artifactId>gwtquery-project</artifactId>
  7. <packaging>pom</packaging>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <name>Gwt Query Project</name>
  10. <url>http://gwtquery.com</url>
  11. <description>GwtQuery is a jQuery clone written in GWT.</description>
  12. <issueManagement>
  13. <system>Google Code</system>
  14. <url>http://code.google.com/p/gwtquery/issues/list</url>
  15. </issueManagement>
  16. <parent>
  17. <groupId>org.sonatype.oss</groupId>
  18. <artifactId>oss-parent</artifactId>
  19. <version>3</version>
  20. </parent>
  21. <developers>
  22. <developer>
  23. <id>ray</id>
  24. <name>Ray Cromwell</name>
  25. <email>ray@timefire.com</email>
  26. <roles>
  27. <role>Project Manager</role>
  28. <role>Architect</role>
  29. </roles>
  30. <organization>Timefire.com</organization>
  31. <timezone>-8</timezone>
  32. </developer>
  33. <developer>
  34. <id>manolo</id>
  35. <name>Manuel Carrasco Moñino</name>
  36. <email>manolo@apache.org</email>
  37. <organization>ASF</organization>
  38. <roles>
  39. <role>Developer</role>
  40. </roles>
  41. </developer>
  42. </developers>
  43. <scm>
  44. <connection>scm:svn:http://gwtquery.googlecode.com/svn/trunk
  45. </connection>
  46. <developerConnection>scm:svn:https://gwtquery.googlecode.com/svn/trunk
  47. </developerConnection>
  48. <url>http://code.google.com/p/gwtquery/source/browse/trunk</url>
  49. </scm>
  50. <modules>
  51. <module>gwtquery-core</module>
  52. <!-- <module>samples</module> -->
  53. <!-- <module>devtest</module> -->
  54. </modules>
  55. <pluginRepositories>
  56. <pluginRepository>
  57. <id>repo1</id>
  58. <url>http://repo1.maven.org/maven2</url>
  59. </pluginRepository>
  60. <pluginRepository>
  61. <id>gcupload</id>
  62. <name>Repository for gcupload plugin</name>
  63. <url>http://gwtupload.googlecode.com/svn/mavenrepo</url>
  64. </pluginRepository>
  65. </pluginRepositories>
  66. <build>
  67. <pluginManagement>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-pmd-plugin</artifactId>
  72. <configuration>
  73. <targetJdk>1.5</targetJdk>
  74. </configuration>
  75. </plugin>
  76. </plugins>
  77. </pluginManagement>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-release-plugin</artifactId>
  82. <configuration>
  83. <tagBase>
  84. https://gwtquery.googlecode.com/svn/tags
  85. </tagBase>
  86. <preparationGoals>clean install</preparationGoals>
  87. </configuration>
  88. </plugin>
  89. <plugin>
  90. <groupId>org.apache.maven.plugins</groupId>
  91. <artifactId>maven-compiler-plugin</artifactId>
  92. <configuration>
  93. <source>1.5</source>
  94. <target>1.5</target>
  95. </configuration>
  96. </plugin>
  97. </plugins>
  98. <extensions>
  99. <extension>
  100. <groupId>org.jvnet.wagon-svn</groupId>
  101. <artifactId>wagon-svn</artifactId>
  102. <version>1.8</version>
  103. </extension>
  104. </extensions>
  105. </build>
  106. <reporting>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.codehaus.mojo</groupId>
  110. <artifactId>changelog-maven-plugin</artifactId>
  111. </plugin>
  112. <plugin>
  113. <groupId>org.apache.maven.plugins</groupId>
  114. <artifactId>maven-javadoc-plugin</artifactId>
  115. </plugin>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-jxr-plugin</artifactId>
  119. <configuration>
  120. <aggregate>true</aggregate>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. </reporting>
  125. <repositories>
  126. <repository>
  127. <id>repo1</id>
  128. <url>http://repo1.maven.org/maven2</url>
  129. <snapshots>
  130. <enabled>false</enabled>
  131. </snapshots>
  132. </repository>
  133. <repository>
  134. <id>maven2-repository.dev.java.net</id>
  135. <name>Java.net Repository for Maven</name>
  136. <url>http://download.java.net/maven/2/</url>
  137. </repository>
  138. </repositories>
  139. <properties>
  140. <gwtversion>2.1.1</gwtversion>
  141. <gwt.loglevel>INFO</gwt.loglevel>
  142. <gwt.outputstyle>OBF</gwt.outputstyle>
  143. <gwt.modulesuffix></gwt.modulesuffix>
  144. </properties>
  145. <profiles>
  146. <profile>
  147. <id>dev</id>
  148. <properties>
  149. <gwt.outputstyle>PRETTY</gwt.outputstyle>
  150. </properties>
  151. </profile>
  152. <profile>
  153. <id>timefire</id>
  154. <distributionManagement>
  155. <repository>
  156. <uniqueVersion>false</uniqueVersion>
  157. <id>timefire-deploy</id>
  158. <url>svn:https://timefire-repository.googlecode.com/svn/mavenrepo/</url>
  159. </repository>
  160. <snapshotRepository>
  161. <uniqueVersion>false</uniqueVersion>
  162. <id>timefire-snapshots</id>
  163. <url>svn:https://timefire-repository.googlecode.com/svn/mavenrepo/</url>
  164. </snapshotRepository>
  165. </distributionManagement>
  166. </profile>
  167. </profiles>
  168. </project>