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

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