選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one
  4. ~ or more contributor license agreements. See the NOTICE file
  5. ~ distributed with this work for additional information
  6. ~ regarding copyright ownership. The ASF licenses this file
  7. ~ to you under the Apache License, Version 2.0 (the
  8. ~ "License"); you may not use this file except in compliance
  9. ~ with the License. You may obtain a copy of the License at
  10. ~
  11. ~ http://www.apache.org/licenses/LICENSE-2.0
  12. ~
  13. ~ Unless required by applicable law or agreed to in writing,
  14. ~ software distributed under the License is distributed on an
  15. ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. ~ KIND, either express or implied. See the License for the
  17. ~ specific language governing permissions and limitations
  18. ~ under the License.
  19. -->
  20. <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">
  21. <modelVersion>4.0.0</modelVersion>
  22. <parent>
  23. <groupId>org.apache.maven</groupId>
  24. <artifactId>maven-parent</artifactId>
  25. <version>5</version>
  26. <relativePath>../pom/maven/pom.xml</relativePath>
  27. </parent>
  28. <groupId>org.apache.maven.archiva</groupId>
  29. <artifactId>archiva-parent</artifactId>
  30. <packaging>pom</packaging>
  31. <name>Archiva</name>
  32. <version>1.0-beta-4-SNAPSHOT</version>
  33. <description>
  34. Archiva is an application for managing one or more remote
  35. repositories, including administration, artifact handling,
  36. browsing and searching.
  37. </description>
  38. <url>http://maven.apache.org/archiva</url>
  39. <issueManagement>
  40. <system>jira</system>
  41. <url>http://jira.codehaus.org/browse/MRM</url>
  42. </issueManagement>
  43. <mailingLists>
  44. <mailingList>
  45. <name>Maven Archiva User List</name>
  46. <subscribe>archiva-users-subscribe@maven.apache.org</subscribe>
  47. <unsubscribe>archiva-users-unsubscribe@maven.apache.org</unsubscribe>
  48. <post>archiva-users@maven.apache.org</post>
  49. <archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-users</archive>
  50. </mailingList>
  51. <mailingList>
  52. <name>Maven Archiva Developer List</name>
  53. <subscribe>archiva-dev-subscribe@maven.apache.org</subscribe>
  54. <unsubscribe>archiva-dev-unsubscribe@maven.apache.org</unsubscribe>
  55. <post>archiva-dev@maven.apache.org</post>
  56. <archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-dev</archive>
  57. </mailingList>
  58. <mailingList>
  59. <name>Maven Archiva Commits List</name>
  60. <subscribe>archiva-commits-subscribe@maven.apache.org</subscribe>
  61. <unsubscribe>archiva-commits-unsubscribe@maven.apache.org</unsubscribe>
  62. <post>archiva-commits@maven.apache.org</post>
  63. <archive>http://mail-archives.apache.org/mod_mbox/maven-archiva-commits</archive>
  64. </mailingList>
  65. </mailingLists>
  66. <scm>
  67. <connection>scm:svn:http://svn.apache.org/repos/asf/maven/archiva/trunk</connection>
  68. <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/archiva/trunk</developerConnection>
  69. <url>http://svn.apache.org/viewcvs.cgi/maven/archiva/trunk</url>
  70. </scm>
  71. <distributionManagement>
  72. <repository>
  73. <id>apache.releases</id>
  74. <url>scpexe://people.apache.org/www/people.apache.org/builds/maven/archiva/${version}/m2-staging-repository</url>
  75. </repository>
  76. <site>
  77. <id>apache.website</id>
  78. <url>scpexe://people.apache.org/www/maven.apache.org/archiva/ref/${project.version}</url>
  79. </site>
  80. </distributionManagement>
  81. <build>
  82. <plugins>
  83. <plugin>
  84. <groupId>org.codehaus.plexus</groupId>
  85. <artifactId>plexus-maven-plugin</artifactId>
  86. <version>1.3.5</version>
  87. <executions>
  88. <execution>
  89. <id>generate</id>
  90. <goals>
  91. <goal>descriptor</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. <!-- Doesn't work on Mac with Java 6 yet
  97. <plugin>
  98. <artifactId>maven-enforcer-plugin</artifactId>
  99. <executions>
  100. <execution>
  101. <id>enforce-java</id>
  102. <goals>
  103. <goal>enforce-once</goal>
  104. </goals>
  105. <configuration>
  106. <rules>
  107. <requireJavaVersion>
  108. <version>1.5.0</version>
  109. </requireJavaVersion>
  110. </rules>
  111. </configuration>
  112. </execution>
  113. </executions>
  114. </plugin>
  115. -->
  116. <plugin>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. <configuration>
  119. <source>1.5</source>
  120. <target>1.5</target>
  121. </configuration>
  122. </plugin>
  123. <plugin>
  124. <artifactId>maven-idea-plugin</artifactId>
  125. <configuration>
  126. <jdkLevel>1.5</jdkLevel>
  127. </configuration>
  128. </plugin>
  129. <plugin>
  130. <artifactId>maven-surefire-plugin</artifactId>
  131. <version>2.2</version>
  132. </plugin>
  133. <plugin>
  134. <groupId>org.apache.maven.plugins</groupId>
  135. <artifactId>maven-remote-resources-plugin</artifactId>
  136. <version>1.0-alpha-6</version>
  137. <executions>
  138. <execution>
  139. <goals>
  140. <goal>process</goal>
  141. </goals>
  142. <configuration>
  143. <resourceBundles>
  144. <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
  145. </resourceBundles>
  146. </configuration>
  147. </execution>
  148. </executions>
  149. </plugin>
  150. </plugins>
  151. <pluginManagement>
  152. <plugins>
  153. <plugin>
  154. <artifactId>maven-idea-plugin</artifactId>
  155. <configuration>
  156. <jdkLevel>1.4</jdkLevel>
  157. </configuration>
  158. </plugin>
  159. <plugin>
  160. <artifactId>maven-release-plugin</artifactId>
  161. <configuration>
  162. <tagBase>https://svn.apache.org/repos/asf/maven/archiva/tags</tagBase>
  163. <preparationGoals>clean install</preparationGoals>
  164. </configuration>
  165. </plugin>
  166. <plugin>
  167. <groupId>org.codehaus.modello</groupId>
  168. <artifactId>modello-maven-plugin</artifactId>
  169. <version>1.0-alpha-15</version>
  170. </plugin>
  171. </plugins>
  172. </pluginManagement>
  173. </build>
  174. <modules>
  175. <module>archiva-base</module>
  176. <module>archiva-database</module>
  177. <module>archiva-reporting</module>
  178. <module>archiva-scheduled</module>
  179. <module>archiva-web</module>
  180. <module>archiva-cli</module>
  181. <!-- <module>archiva-site</module> -->
  182. <!-- <module>maven-meeper</module> -->
  183. </modules>
  184. <dependencies>
  185. <dependency>
  186. <groupId>junit</groupId>
  187. <artifactId>junit</artifactId>
  188. <version>3.8.1</version>
  189. <scope>test</scope>
  190. </dependency>
  191. <dependency>
  192. <groupId>easymock</groupId>
  193. <artifactId>easymock</artifactId>
  194. <version>1.2_Java1.3</version>
  195. <scope>test</scope>
  196. </dependency>
  197. </dependencies>
  198. <dependencyManagement>
  199. <dependencies>
  200. <dependency>
  201. <groupId>javax.activation</groupId>
  202. <artifactId>activation</artifactId>
  203. <version>1.1</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.apache.maven.archiva</groupId>
  207. <artifactId>archiva-applet</artifactId>
  208. <version>${pom.version}</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.apache.maven.archiva</groupId>
  212. <artifactId>archiva-artifact-converter</artifactId>
  213. <version>${pom.version}</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>org.apache.maven.archiva</groupId>
  217. <artifactId>archiva-artifact-reports</artifactId>
  218. <version>${pom.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>org.apache.maven.archiva</groupId>
  222. <artifactId>archiva-common</artifactId>
  223. <version>${pom.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.apache.maven.archiva</groupId>
  227. <artifactId>archiva-configuration</artifactId>
  228. <version>${pom.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.apache.maven.archiva</groupId>
  232. <artifactId>archiva-consumer-api</artifactId>
  233. <version>${pom.version}</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.apache.maven.archiva</groupId>
  237. <artifactId>archiva-converter</artifactId>
  238. <version>${pom.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>org.apache.maven.archiva</groupId>
  242. <artifactId>archiva-dependency-graph</artifactId>
  243. <version>${pom.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>org.apache.maven.archiva</groupId>
  247. <artifactId>archiva-core</artifactId>
  248. <version>${pom.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.apache.maven.archiva</groupId>
  252. <artifactId>archiva-core-consumers</artifactId>
  253. <version>${pom.version}</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.apache.maven.archiva</groupId>
  257. <artifactId>archiva-database</artifactId>
  258. <version>${pom.version}</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.apache.maven.archiva</groupId>
  262. <artifactId>archiva-database-consumers</artifactId>
  263. <version>${pom.version}</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.apache.maven.archiva</groupId>
  267. <artifactId>archiva-indexer</artifactId>
  268. <version>${pom.version}</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.apache.maven.archiva</groupId>
  272. <artifactId>archiva-lucene-consumers</artifactId>
  273. <version>${pom.version}</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.apache.maven.archiva</groupId>
  277. <artifactId>archiva-model</artifactId>
  278. <version>${pom.version}</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>org.apache.maven.archiva</groupId>
  282. <artifactId>archiva-plexus-application</artifactId>
  283. <version>${pom.version}</version>
  284. <type>plexus-application</type>
  285. </dependency>
  286. <dependency>
  287. <groupId>org.apache.maven.archiva</groupId>
  288. <artifactId>archiva-policies</artifactId>
  289. <version>${pom.version}</version>
  290. </dependency>
  291. <dependency>
  292. <groupId>org.apache.maven.archiva</groupId>
  293. <artifactId>archiva-proxy</artifactId>
  294. <version>${pom.version}</version>
  295. </dependency>
  296. <dependency>
  297. <groupId>org.apache.maven.archiva</groupId>
  298. <artifactId>archiva-report-manager</artifactId>
  299. <version>${pom.version}</version>
  300. </dependency>
  301. <dependency>
  302. <groupId>org.apache.maven.archiva</groupId>
  303. <artifactId>archiva-repository-layer</artifactId>
  304. <version>${pom.version}</version>
  305. </dependency>
  306. <dependency>
  307. <groupId>org.apache.maven.archiva</groupId>
  308. <artifactId>archiva-scheduled</artifactId>
  309. <version>${pom.version}</version>
  310. </dependency>
  311. <dependency>
  312. <groupId>org.apache.maven.archiva</groupId>
  313. <artifactId>archiva-security</artifactId>
  314. <version>${pom.version}</version>
  315. </dependency>
  316. <dependency>
  317. <groupId>org.apache.maven.archiva</groupId>
  318. <artifactId>archiva-signature-consumers</artifactId>
  319. <version>${pom.version}</version>
  320. </dependency>
  321. <dependency>
  322. <groupId>org.apache.maven.archiva</groupId>
  323. <artifactId>archiva-transaction</artifactId>
  324. <version>${pom.version}</version>
  325. </dependency>
  326. <dependency>
  327. <groupId>org.apache.maven.archiva</groupId>
  328. <artifactId>archiva-webapp</artifactId>
  329. <version>${pom.version}</version>
  330. <type>war</type>
  331. </dependency>
  332. <dependency>
  333. <groupId>org.apache.maven.archiva</groupId>
  334. <artifactId>archiva-xml-tools</artifactId>
  335. <version>${pom.version}</version>
  336. </dependency>
  337. <dependency>
  338. <groupId>commons-collections</groupId>
  339. <artifactId>commons-collections</artifactId>
  340. <version>3.2</version>
  341. </dependency>
  342. <dependency>
  343. <groupId>commons-io</groupId>
  344. <artifactId>commons-io</artifactId>
  345. <version>1.2</version>
  346. </dependency>
  347. <dependency>
  348. <groupId>commons-lang</groupId>
  349. <artifactId>commons-lang</artifactId>
  350. <version>2.2</version>
  351. </dependency>
  352. <dependency>
  353. <groupId>commons-logging</groupId>
  354. <artifactId>commons-logging</artifactId>
  355. <version>1.0.4</version>
  356. </dependency>
  357. <dependency>
  358. <groupId>commons-logging</groupId>
  359. <artifactId>commons-logging-api</artifactId>
  360. <version>1.0.4</version>
  361. </dependency>
  362. <dependency>
  363. <groupId>org.apache.derby</groupId>
  364. <artifactId>derby</artifactId>
  365. <version>10.1.3.1</version>
  366. </dependency>
  367. <dependency>
  368. <groupId>org.apache.derby</groupId>
  369. <artifactId>derbytools</artifactId>
  370. <version>10.1.3.1</version>
  371. </dependency>
  372. <dependency>
  373. <groupId>dom4j</groupId>
  374. <artifactId>dom4j</artifactId>
  375. <version>1.6.1</version>
  376. </dependency>
  377. <dependency>
  378. <groupId>hsqldb</groupId>
  379. <artifactId>hsqldb</artifactId>
  380. <version>1.8.0.7</version>
  381. </dependency>
  382. <dependency>
  383. <groupId>jaxen</groupId>
  384. <artifactId>jaxen</artifactId>
  385. <version>1.1</version>
  386. <exclusions>
  387. <exclusion>
  388. <groupId>xerces</groupId>
  389. <artifactId>xercesImpl</artifactId>
  390. </exclusion>
  391. </exclusions>
  392. </dependency>
  393. <dependency>
  394. <groupId>javax.jdo</groupId>
  395. <artifactId>jdo2-api</artifactId>
  396. <version>2.0</version>
  397. </dependency>
  398. <dependency>
  399. <groupId>jdom</groupId>
  400. <artifactId>jdom</artifactId>
  401. <version>1.0</version>
  402. </dependency>
  403. <dependency>
  404. <groupId>jpox</groupId>
  405. <artifactId>jpox</artifactId>
  406. <version>1.1.7</version>
  407. <exclusions>
  408. <exclusion>
  409. <groupId>javax.transaction</groupId>
  410. <artifactId>jta</artifactId>
  411. </exclusion>
  412. </exclusions>
  413. </dependency>
  414. <dependency>
  415. <groupId>javax.servlet</groupId>
  416. <artifactId>jsp-api</artifactId>
  417. <version>2.0</version>
  418. <scope>provided</scope>
  419. </dependency>
  420. <dependency>
  421. <groupId>javax.servlet</groupId>
  422. <artifactId>jstl</artifactId>
  423. <version>1.1.2</version>
  424. </dependency>
  425. <dependency>
  426. <groupId>log4j</groupId>
  427. <artifactId>log4j</artifactId>
  428. <version>1.2.8</version>
  429. </dependency>
  430. <dependency>
  431. <groupId>org.apache.lucene</groupId>
  432. <artifactId>lucene-core</artifactId>
  433. <version>2.0.0</version>
  434. </dependency>
  435. <dependency>
  436. <groupId>javax.mail</groupId>
  437. <artifactId>mail</artifactId>
  438. <version>1.4</version>
  439. </dependency>
  440. <dependency>
  441. <groupId>org.apache.maven</groupId>
  442. <artifactId>maven-artifact</artifactId>
  443. <version>${maven.version}</version>
  444. </dependency>
  445. <dependency>
  446. <groupId>org.apache.maven</groupId>
  447. <artifactId>maven-artifact-manager</artifactId>
  448. <version>${maven.version}</version>
  449. </dependency>
  450. <dependency>
  451. <groupId>org.apache.maven</groupId>
  452. <artifactId>maven-model</artifactId>
  453. <version>${maven.version}</version>
  454. </dependency>
  455. <dependency>
  456. <groupId>org.apache.maven</groupId>
  457. <artifactId>maven-project</artifactId>
  458. <version>${maven.version}</version>
  459. </dependency>
  460. <dependency>
  461. <groupId>org.apache.maven</groupId>
  462. <artifactId>maven-repository-metadata</artifactId>
  463. <version>${maven.version}</version>
  464. </dependency>
  465. <dependency>
  466. <groupId>org.apache.maven.shared</groupId>
  467. <artifactId>maven-app-configuration-model</artifactId>
  468. <version>1.0</version>
  469. </dependency>
  470. <dependency>
  471. <groupId>org.apache.maven.shared</groupId>
  472. <artifactId>maven-app-configuration-web</artifactId>
  473. <version>1.0</version>
  474. </dependency>
  475. <dependency>
  476. <groupId>org.apache.maven.shared</groupId>
  477. <artifactId>maven-model-converter</artifactId>
  478. <version>2.1</version>
  479. </dependency>
  480. <dependency>
  481. <groupId>org.codehaus.plexus</groupId>
  482. <artifactId>plexus-appserver-host</artifactId>
  483. <version>2.0-alpha-8</version>
  484. </dependency>
  485. <dependency>
  486. <groupId>org.codehaus.plexus</groupId>
  487. <artifactId>plexus-appserver-service-jetty</artifactId>
  488. <version>2.0-alpha-8</version>
  489. <type>plexus-service</type>
  490. </dependency>
  491. <dependency>
  492. <groupId>org.codehaus.plexus</groupId>
  493. <artifactId>plexus-cli</artifactId>
  494. <version>1.1</version>
  495. </dependency>
  496. <dependency>
  497. <groupId>org.codehaus.plexus</groupId>
  498. <artifactId>plexus-command-line</artifactId>
  499. <version>1.0-alpha-2</version>
  500. </dependency>
  501. <dependency>
  502. <groupId>org.codehaus.plexus</groupId>
  503. <artifactId>plexus-component-api</artifactId>
  504. <version>1.0-alpha-22</version>
  505. </dependency>
  506. <dependency>
  507. <groupId>org.codehaus.plexus</groupId>
  508. <artifactId>plexus-container-default</artifactId>
  509. <version>1.0-alpha-22</version>
  510. </dependency>
  511. <dependency>
  512. <groupId>org.codehaus.plexus</groupId>
  513. <artifactId>plexus-digest</artifactId>
  514. <version>1.1</version>
  515. </dependency>
  516. <dependency>
  517. <groupId>org.codehaus.plexus</groupId>
  518. <artifactId>plexus-expression-evaluator</artifactId>
  519. <version>1.0-rc1</version>
  520. </dependency>
  521. <dependency>
  522. <groupId>org.codehaus.plexus</groupId>
  523. <artifactId>plexus-i18n</artifactId>
  524. <version>1.0-beta-6</version>
  525. </dependency>
  526. <dependency>
  527. <groupId>org.codehaus.plexus</groupId>
  528. <artifactId>plexus-jdo2</artifactId>
  529. <version>1.0-alpha-8</version>
  530. </dependency>
  531. <dependency>
  532. <groupId>org.codehaus.plexus</groupId>
  533. <artifactId>plexus-naming</artifactId>
  534. <version>1.0-alpha-3</version>
  535. </dependency>
  536. <dependency>
  537. <groupId>org.codehaus.plexus</groupId>
  538. <artifactId>plexus-quartz</artifactId>
  539. <version>1.0-alpha-3</version>
  540. </dependency>
  541. <dependency>
  542. <groupId>org.codehaus.plexus</groupId>
  543. <artifactId>plexus-slf4j-logging</artifactId>
  544. <version>1.1-alpha-1</version>
  545. </dependency>
  546. <dependency>
  547. <groupId>org.codehaus.plexus</groupId>
  548. <artifactId>plexus-taskqueue</artifactId>
  549. <version>1.0-alpha-6</version>
  550. </dependency>
  551. <dependency>
  552. <groupId>org.codehaus.plexus</groupId>
  553. <artifactId>plexus-utils</artifactId>
  554. <version>1.4</version>
  555. </dependency>
  556. <dependency>
  557. <groupId>org.codehaus.plexus</groupId>
  558. <artifactId>plexus-xwork-integration</artifactId>
  559. <version>1.0-alpha-7</version>
  560. </dependency>
  561. <dependency>
  562. <groupId>org.codehaus.plexus.cache</groupId>
  563. <artifactId>plexus-cache-api</artifactId>
  564. <version>1.0-alpha-2</version>
  565. </dependency>
  566. <dependency>
  567. <groupId>org.codehaus.plexus.cache</groupId>
  568. <artifactId>plexus-cache-ehcache</artifactId>
  569. <version>1.0-alpha-2</version>
  570. </dependency>
  571. <dependency>
  572. <groupId>net.sf.ehcache</groupId>
  573. <artifactId>ehcache</artifactId>
  574. <version>1.3.0</version>
  575. </dependency>
  576. <dependency>
  577. <groupId>org.codehaus.plexus.redback</groupId>
  578. <artifactId>redback-rbac-memory</artifactId>
  579. <version>${redback.version}</version>
  580. <scope>test</scope>
  581. </dependency>
  582. <dependency>
  583. <groupId>org.codehaus.plexus.redback</groupId>
  584. <artifactId>redback-users-memory</artifactId>
  585. <version>${redback.version}</version>
  586. <scope>test</scope>
  587. </dependency>
  588. <dependency>
  589. <groupId>org.codehaus.plexus.redback</groupId>
  590. <artifactId>redback-keys-memory</artifactId>
  591. <version>${redback.version}</version>
  592. <scope>test</scope>
  593. </dependency>
  594. <dependency>
  595. <groupId>org.codehaus.plexus.redback</groupId>
  596. <artifactId>redback-rbac-model</artifactId>
  597. <version>${redback.version}</version>
  598. </dependency>
  599. <dependency>
  600. <groupId>org.codehaus.plexus.redback</groupId>
  601. <artifactId>redback-authorization-rbac</artifactId>
  602. <version>${redback.version}</version>
  603. </dependency>
  604. <dependency>
  605. <groupId>org.codehaus.plexus.redback</groupId>
  606. <artifactId>redback-rbac-role-manager</artifactId>
  607. <version>${redback.version}</version>
  608. </dependency>
  609. <dependency>
  610. <groupId>org.codehaus.plexus.redback</groupId>
  611. <artifactId>redback-system</artifactId>
  612. <version>${redback.version}</version>
  613. </dependency>
  614. <dependency>
  615. <groupId>org.codehaus.plexus.redback</groupId>
  616. <artifactId>redback-taglib</artifactId>
  617. <version>${redback.version}</version>
  618. </dependency>
  619. <dependency>
  620. <groupId>org.codehaus.plexus.redback</groupId>
  621. <artifactId>redback-xwork-content</artifactId>
  622. <version>${redback.version}</version>
  623. <type>war</type>
  624. <exclusions>
  625. <exclusion>
  626. <groupId>classworlds</groupId>
  627. <artifactId>classworlds</artifactId>
  628. </exclusion>
  629. </exclusions>
  630. </dependency>
  631. <dependency>
  632. <groupId>org.codehaus.plexus.redback</groupId>
  633. <artifactId>redback-xwork-integration</artifactId>
  634. <version>${redback.version}</version>
  635. </dependency>
  636. <dependency>
  637. <groupId>org.codehaus.plexus.registry</groupId>
  638. <artifactId>plexus-registry-api</artifactId>
  639. <version>1.0-alpha-2</version>
  640. </dependency>
  641. <dependency>
  642. <groupId>org.codehaus.plexus.registry</groupId>
  643. <artifactId>plexus-registry-commons</artifactId>
  644. <version>1.0-alpha-2</version>
  645. <exclusions>
  646. <exclusion>
  647. <groupId>ant</groupId>
  648. <artifactId>ant-optional</artifactId>
  649. </exclusion>
  650. <exclusion>
  651. <groupId>jdom</groupId>
  652. <artifactId>jdom</artifactId>
  653. </exclusion>
  654. </exclusions>
  655. </dependency>
  656. <dependency>
  657. <groupId>org.codehaus.plexus.webdav</groupId>
  658. <artifactId>plexus-webdav-simple</artifactId>
  659. <version>1.0-beta-1</version>
  660. </dependency>
  661. <dependency>
  662. <groupId>javax.servlet</groupId>
  663. <artifactId>servlet-api</artifactId>
  664. <version>2.4</version>
  665. </dependency>
  666. <dependency>
  667. <groupId>opensymphony</groupId>
  668. <artifactId>sitemesh</artifactId>
  669. <version>2.2.1</version>
  670. </dependency>
  671. <dependency>
  672. <groupId>org.slf4j</groupId>
  673. <artifactId>slf4j-log4j12</artifactId>
  674. <version>1.2</version>
  675. </dependency>
  676. <dependency>
  677. <groupId>taglibs</groupId>
  678. <artifactId>standard</artifactId>
  679. <version>1.1.2</version>
  680. </dependency>
  681. <dependency>
  682. <groupId>org.apache.maven.wagon</groupId>
  683. <artifactId>wagon-file</artifactId>
  684. <version>${wagon.version}</version>
  685. </dependency>
  686. <dependency>
  687. <groupId>org.apache.maven.wagon</groupId>
  688. <artifactId>wagon-http-lightweight</artifactId>
  689. <version>${wagon.version}</version>
  690. </dependency>
  691. <dependency>
  692. <groupId>org.apache.maven.wagon</groupId>
  693. <artifactId>wagon-provider-api</artifactId>
  694. <version>${wagon.version}</version>
  695. </dependency>
  696. <dependency>
  697. <groupId>org.apache.maven.wagon</groupId>
  698. <artifactId>wagon-ssh</artifactId>
  699. <version>${wagon.version}</version>
  700. </dependency>
  701. <dependency>
  702. <groupId>com.opensymphony</groupId>
  703. <artifactId>webwork</artifactId>
  704. <version>2.2.6</version>
  705. </dependency>
  706. <dependency>
  707. <groupId>xmlunit</groupId>
  708. <artifactId>xmlunit</artifactId>
  709. <version>1.0</version>
  710. </dependency>
  711. </dependencies>
  712. </dependencyManagement>
  713. <reporting>
  714. <plugins>
  715. <!-- This breaks site generation with 'cobertura.ser does not exist'
  716. in the archiva-signature-consumers and archiva-applet modules.
  717. <plugin>
  718. <groupId>org.codehaus.mojo</groupId>
  719. <artifactId>cobertura-maven-plugin</artifactId>
  720. <version>2.0</version>
  721. </plugin>
  722. -->
  723. <plugin>
  724. <artifactId>maven-checkstyle-plugin</artifactId>
  725. <configuration>
  726. <configLocation>config/maven_checks.xml</configLocation>
  727. </configuration>
  728. </plugin>
  729. <plugin>
  730. <groupId>org.codehaus.mojo</groupId>
  731. <artifactId>findbugs-maven-plugin</artifactId>
  732. <version>1.1.1</version>
  733. </plugin>
  734. <plugin>
  735. <groupId>org.codehaus.mojo</groupId>
  736. <artifactId>changelog-maven-plugin</artifactId>
  737. </plugin>
  738. <plugin>
  739. <groupId>org.codehaus.mojo</groupId>
  740. <artifactId>taglist-maven-plugin</artifactId>
  741. </plugin>
  742. <plugin>
  743. <artifactId>maven-jxr-plugin</artifactId>
  744. <configuration>
  745. <aggregate>true</aggregate>
  746. </configuration>
  747. </plugin>
  748. <plugin>
  749. <artifactId>maven-surefire-report-plugin</artifactId>
  750. </plugin>
  751. <plugin>
  752. <artifactId>maven-javadoc-plugin</artifactId>
  753. <configuration>
  754. <source>1.5</source>
  755. <aggregate>true</aggregate>
  756. <doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
  757. <docletArtifact>
  758. <groupId>gr.spinellis</groupId>
  759. <artifactId>UmlGraph</artifactId>
  760. <version>4.6</version>
  761. </docletArtifact>
  762. <additionalparam>
  763. -inferrel -inferdep -quiet -hide java.*
  764. -collpackages java.util.* -qualify
  765. -postfixpackage -nodefontsize 9
  766. -nodefontpackagesize 7
  767. </additionalparam>
  768. </configuration>
  769. </plugin>
  770. <plugin>
  771. <artifactId>maven-pmd-plugin</artifactId>
  772. <!-- TODO: choose appropriate rulesets -->
  773. <configuration>
  774. <targetJdk>1.5</targetJdk>
  775. </configuration>
  776. </plugin>
  777. </plugins>
  778. </reporting>
  779. <profiles>
  780. <profile>
  781. <id>ci</id>
  782. <activation>
  783. <property>
  784. <name>enableCiProfile</name>
  785. <value>true</value>
  786. </property>
  787. </activation>
  788. <build>
  789. <plugins>
  790. <plugin>
  791. <groupId>org.apache.maven.plugins</groupId>
  792. <artifactId>maven-pmd-plugin</artifactId>
  793. <executions>
  794. <execution>
  795. <phase>process-sources</phase>
  796. <goals>
  797. <!-- TODO: after rules are set
  798. <goal>check</goal>
  799. -->
  800. <goal>cpd-check</goal>
  801. </goals>
  802. </execution>
  803. </executions>
  804. </plugin>
  805. <plugin>
  806. <groupId>org.apache.maven.plugins</groupId>
  807. <artifactId>maven-checkstyle-plugin</artifactId>
  808. <executions>
  809. <execution>
  810. <phase>process-sources</phase>
  811. <goals>
  812. <!-- TODO: reformat first, and correct the checks (some are not consistent with the Maven style)
  813. <goal>check</goal>
  814. -->
  815. </goals>
  816. </execution>
  817. </executions>
  818. </plugin>
  819. <plugin>
  820. <groupId>org.codehaus.mojo</groupId>
  821. <artifactId>cobertura-maven-plugin</artifactId>
  822. <version>2.0</version>
  823. <configuration>
  824. <check>
  825. <!-- TODO: raise to 85/100 -->
  826. <totalLineRate>77</totalLineRate>
  827. <totalBranchRate>95</totalBranchRate>
  828. </check>
  829. <instrumentation>
  830. <excludes>
  831. <exclude>**/*$*</exclude>
  832. </excludes>
  833. </instrumentation>
  834. </configuration>
  835. <executions>
  836. <execution>
  837. <id>clean</id>
  838. <goals>
  839. <goal>clean</goal>
  840. </goals>
  841. </execution>
  842. <execution>
  843. <id>check</id>
  844. <goals>
  845. <goal>check</goal>
  846. </goals>
  847. </execution>
  848. </executions>
  849. </plugin>
  850. </plugins>
  851. </build>
  852. </profile>
  853. <profile>
  854. <id>release</id>
  855. <build>
  856. <plugins>
  857. <plugin>
  858. <!-- TODO: Remove after maven-parent v6 is released -->
  859. <artifactId>maven-gpg-plugin</artifactId>
  860. <version>1.0-alpha-3</version>
  861. </plugin>
  862. <plugin>
  863. <artifactId>maven-assembly-plugin</artifactId>
  864. <version>2.2-beta-1</version>
  865. <inherited>false</inherited>
  866. <configuration>
  867. <descriptors>
  868. <descriptor>src/main/assembly/src.xml</descriptor>
  869. </descriptors>
  870. <tarLongFileMode>gnu</tarLongFileMode>
  871. <appendAssemblyId>false</appendAssemblyId>
  872. <finalName>apache-archiva-${version}-src</finalName>
  873. </configuration>
  874. <executions>
  875. <execution>
  876. <id>make-assembly</id>
  877. <phase>package</phase>
  878. <goals>
  879. <goal>single</goal>
  880. </goals>
  881. </execution>
  882. </executions>
  883. </plugin>
  884. </plugins>
  885. </build>
  886. </profile>
  887. </profiles>
  888. <properties>
  889. <maven.version>2.0.5</maven.version>
  890. <wagon.version>1.0-beta-2</wagon.version>
  891. <redback.version>1.0-alpha-4</redback.version>
  892. </properties>
  893. <!-- for plexus webdav snapshot -->
  894. <repositories>
  895. <repository>
  896. <id>codehaus.snapshots</id>
  897. <url>http://snapshots.repository.codehaus.org/</url>
  898. <snapshots>
  899. <enabled>true</enabled>
  900. </snapshots>
  901. </repository>
  902. <repository>
  903. <id>redback.repo</id>
  904. <url>https://dav.codehaus.org/repository/redback</url>
  905. <releases>
  906. <enabled>true</enabled>
  907. </releases>
  908. </repository>
  909. </repositories>
  910. </project>