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

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