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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <project>
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.apache.maven.repository</groupId>
  4. <artifactId>maven-repository-manager</artifactId>
  5. <packaging>pom</packaging>
  6. <name>Maven Repository Manager</name>
  7. <version>1.0-SNAPSHOT</version>
  8. <description>
  9. The Maven Repository Manager is an application for managing one or more remote repositories, including administration, artifact handling,
  10. browsing and searching.
  11. </description>
  12. <url>http://maven.apache.org/repository-manager</url>
  13. <issueManagement>
  14. <system>jira</system>
  15. <url>http://jira.codehaus.org/browse/MRM</url>
  16. </issueManagement>
  17. <ciManagement>
  18. <system>continuum</system>
  19. <notifiers>
  20. <notifier>
  21. <configuration>
  22. <address>commits@maven.apache.org</address>
  23. </configuration>
  24. </notifier>
  25. </notifiers>
  26. </ciManagement>
  27. <mailingLists>
  28. <mailingList>
  29. <name>Maven User List</name>
  30. <subscribe>users-subscribe@maven.apache.org</subscribe>
  31. <unsubscribe>users-unsubscribe@maven.apache.org</unsubscribe>
  32. <post>users@maven.apache.org</post>
  33. <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
  34. <otherArchives>
  35. <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
  36. <otherArchive>http://www.nabble.com/Maven---Users-f178.html</otherArchive>
  37. </otherArchives>
  38. </mailingList>
  39. <mailingList>
  40. <name>Maven Developer List</name>
  41. <subscribe>dev-subscribe@maven.apache.org</subscribe>
  42. <unsubscribe>dev-unsubscribe@maven.apache.org</unsubscribe>
  43. <post>dev@maven.apache.org</post>
  44. <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
  45. </mailingList>
  46. <mailingList>
  47. <name>Maven Commits List</name>
  48. <subscribe>commits-subscribe@maven.apache.org</subscribe>
  49. <unsubscribe>commits-unsubscribe@maven.apache.org</unsubscribe>
  50. <post>commits@maven.apache.org</post>
  51. <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
  52. </mailingList>
  53. <mailingList>
  54. <name>Apache Announce List</name>
  55. <subscribe>announce-subscribe@apache.org</subscribe>
  56. <unsubscribe>announce-unsubscribe@apache.org</unsubscribe>
  57. <post>announce@apache.org</post>
  58. <archive>http://mail-archives.apache.org/mod_mbox/www-announce/</archive>
  59. </mailingList>
  60. </mailingLists>
  61. <developers>
  62. <developer>
  63. <id>brett</id>
  64. <name>Brett Porter</name>
  65. <email>brett@apache.org</email>
  66. <organization>ASF</organization>
  67. <roles>
  68. <role>PMC Member</role>
  69. </roles>
  70. <timezone>+10</timezone>
  71. </developer>
  72. </developers>
  73. <licenses>
  74. <license>
  75. <name>The Apache Software License, Version 2.0</name>
  76. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  77. <distribution>repo</distribution>
  78. </license>
  79. </licenses>
  80. <scm>
  81. <connection>scm:svn:http://svn.apache.org/repos/asf/maven/repository-manager/trunk</connection>
  82. <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/repository-manager/trunk</developerConnection>
  83. <url>http://svn.apache.org/viewcvs.cgi/maven/repository-manager/trunk</url>
  84. </scm>
  85. <organization>
  86. <name>Apache Software Foundation</name>
  87. <url>http://www.apache.org/</url>
  88. </organization>
  89. <build>
  90. <pluginManagement>
  91. <plugins>
  92. <plugin>
  93. <artifactId>maven-release-plugin</artifactId>
  94. <configuration>
  95. <tagBase>https://svn.apache.org/repos/asf/maven/repository-manager/tags</tagBase>
  96. </configuration>
  97. </plugin>
  98. </plugins>
  99. </pluginManagement>
  100. </build>
  101. <modules>
  102. <module>maven-repository-discovery</module>
  103. <module>maven-repository-reports-standard</module>
  104. </modules>
  105. <repositories>
  106. <repository>
  107. <!--
  108. <releases>
  109. <enabled>false</enabled>
  110. </releases>
  111. -->
  112. <id>apache.snapshots</id>
  113. <name>Apache Development Repository</name>
  114. <url>http://cvs.apache.org/maven-snapshot-repository</url>
  115. </repository>
  116. </repositories>
  117. <pluginRepositories>
  118. <pluginRepository>
  119. <releases>
  120. <enabled>false</enabled>
  121. </releases>
  122. <id>apache.snapshots</id>
  123. <name>Apache Development Repository</name>
  124. <url>http://cvs.apache.org/maven-snapshot-repository</url>
  125. </pluginRepository>
  126. </pluginRepositories>
  127. <dependencies>
  128. <dependency>
  129. <groupId>junit</groupId>
  130. <artifactId>junit</artifactId>
  131. <version>3.8.1</version>
  132. <scope>test</scope>
  133. </dependency>
  134. </dependencies>
  135. <dependencyManagement>
  136. <dependencies>
  137. <dependency>
  138. <groupId>org.codehaus.plexus</groupId>
  139. <artifactId>plexus-container-default</artifactId>
  140. <version>1.0-alpha-8</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.codehaus.plexus</groupId>
  144. <artifactId>plexus-utils</artifactId>
  145. <version>1.0.4</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.maven</groupId>
  149. <artifactId>maven-repository-metadata</artifactId>
  150. <version>2.0</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.maven</groupId>
  154. <artifactId>maven-model</artifactId>
  155. <version>2.0</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.apache.maven</groupId>
  159. <artifactId>maven-artifact</artifactId>
  160. <version>2.0.1-SNAPSHOT</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.maven</groupId>
  164. <artifactId>maven-artifact-manager</artifactId>
  165. <version>2.0.1-SNAPSHOT</version>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.apache.maven.wagon</groupId>
  169. <artifactId>wagon-provider-api</artifactId>
  170. <version>1.0-alpha-5</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.apache.maven.wagon</groupId>
  174. <artifactId>wagon-ssh</artifactId>
  175. <version>1.0-alpha-5</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.apache.maven.wagon</groupId>
  179. <artifactId>wagon-file</artifactId>
  180. <version>1.0-alpha-5</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.maven.wagon</groupId>
  184. <artifactId>wagon-http-lightweight</artifactId>
  185. <version>1.0-alpha-5</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.maven.repository</groupId>
  189. <artifactId>maven-repository-discovery</artifactId>
  190. <version>${pom.version}</version>
  191. </dependency>
  192. </dependencies>
  193. </dependencyManagement>
  194. <distributionManagement>
  195. <!--
  196. <repository>
  197. <id>repo1</id>
  198. <name>Maven Central Repository</name>
  199. <url>scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2</url>
  200. </repository>
  201. -->
  202. <snapshotRepository>
  203. <id>apache.snapshots</id>
  204. <name>Apache Development Repository</name>
  205. <url>scp://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
  206. </snapshotRepository>
  207. <site>
  208. <id>website</id>
  209. <url>scp://minotaur.apache.org/www/maven.apache.org/repository-manager/</url>
  210. </site>
  211. </distributionManagement>
  212. <reporting>
  213. <plugins>
  214. <!-- TODO: should be omitted when there are no tests to run -->
  215. <plugin>
  216. <groupId>org.apache.maven.plugins</groupId>
  217. <artifactId>maven-clover-plugin</artifactId>
  218. <!-- TODO: why are these needed? -->
  219. <configuration>
  220. <flushPolicy>threaded</flushPolicy>
  221. <flushInterval>100</flushInterval>
  222. </configuration>
  223. </plugin>
  224. <plugin>
  225. <artifactId>maven-checkstyle-plugin</artifactId>
  226. </plugin>
  227. <!-- TODO: should work, even if there are no sources -->
  228. <plugin>
  229. <groupId>org.codehaus.mojo</groupId>
  230. <artifactId>changelog-maven-plugin</artifactId>
  231. </plugin>
  232. <plugin>
  233. <groupId>org.codehaus.mojo</groupId>
  234. <artifactId>taglist-maven-plugin</artifactId>
  235. </plugin>
  236. <!-- TODO: should be omitted when there are no sources -->
  237. <plugin>
  238. <groupId>org.codehaus.mojo</groupId>
  239. <artifactId>jxr-maven-plugin</artifactId>
  240. </plugin>
  241. <plugin>
  242. <groupId>org.codehaus.mojo</groupId>
  243. <artifactId>jdepend-maven-plugin</artifactId>
  244. </plugin>
  245. <!-- TODO: should be omitted when there are no tests to run -->
  246. <plugin>
  247. <groupId>org.codehaus.mojo</groupId>
  248. <artifactId>surefire-report-maven-plugin</artifactId>
  249. </plugin>
  250. <!-- TODO: should be omitted when there are no sources/not java -->
  251. <plugin>
  252. <artifactId>maven-javadoc-plugin</artifactId>
  253. </plugin>
  254. <!-- TODO: should be omitted when there are no sources/not java -->
  255. <plugin>
  256. <artifactId>maven-pmd-plugin</artifactId>
  257. </plugin>
  258. </plugins>
  259. </reporting>
  260. </project>