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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194
  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.archiva</groupId>
  27. <artifactId>archiva-parent</artifactId>
  28. <version>4-SNAPSHOT</version>
  29. <relativePath>../parent/pom.xml</relativePath>
  30. </parent>
  31. <name>Archiva</name>
  32. <artifactId>archiva</artifactId>
  33. <packaging>pom</packaging>
  34. <version>1.3-SNAPSHOT</version>
  35. <url>http://archiva.apache.org</url>
  36. <scm>
  37. <connection>scm:svn:http://svn.apache.org/repos/asf/archiva/trunk</connection>
  38. <developerConnection>scm:svn:https://svn.apache.org/repos/asf/archiva/trunk</developerConnection>
  39. <url>http://svn.apache.org/viewvc/archiva/trunk</url>
  40. </scm>
  41. <build>
  42. <plugins>
  43. <!-- We want to package up license resources in the JARs produced -->
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-remote-resources-plugin</artifactId>
  47. <executions>
  48. <execution>
  49. <goals>
  50. <goal>process</goal>
  51. </goals>
  52. <configuration>
  53. <resourceBundles>
  54. <resourceBundle>org.apache:apache-jar-resource-bundle:1.3</resourceBundle>
  55. </resourceBundles>
  56. </configuration>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-enforcer-plugin</artifactId>
  63. <version>1.0-alpha-4</version>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>enforce</goal>
  68. </goals>
  69. <configuration>
  70. <rules>
  71. <bannedDependencies>
  72. <excludes>
  73. <exclude>org.codehaus.plexus:plexus-container-default</exclude>
  74. <exclude>org.codehaus.plexus:plexus-log4j-logging</exclude>
  75. <exclude>commons-logging:commons-logging</exclude>
  76. <exclude>org.slf4j:jcl104-over-slf4j</exclude>
  77. <exclude>velocity:velocity-dep</exclude>
  78. <exclude>classworlds:classworlds</exclude>
  79. <exclude>javax.transaction:jta</exclude>
  80. <exclude>javax.sql:jdbc-stdext</exclude>
  81. <exclude>ant:ant-optional</exclude>
  82. <exclude>xom:xom</exclude>
  83. <exclude>org.codehaus.plexus:plexus-xwork-integration</exclude>
  84. <exclude>plexus:plexus-utils</exclude>
  85. </excludes>
  86. </bannedDependencies>
  87. </rules>
  88. </configuration>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.codehaus.plexus</groupId>
  94. <artifactId>plexus-component-metadata</artifactId>
  95. <version>1.0-beta-3.0.5</version>
  96. <executions>
  97. <execution>
  98. <id>generate</id>
  99. <phase>generate-resources</phase>
  100. <goals>
  101. <goal>generate-metadata</goal>
  102. </goals>
  103. </execution>
  104. </executions>
  105. </plugin>
  106. </plugins>
  107. <pluginManagement>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.codehaus.modello</groupId>
  111. <artifactId>modello-maven-plugin</artifactId>
  112. <version>1.0</version>
  113. <configuration>
  114. <useJava5>true</useJava5>
  115. </configuration>
  116. <dependencies>
  117. <dependency>
  118. <groupId>org.codehaus.modello</groupId>
  119. <artifactId>modello-plugin-plexus-registry</artifactId>
  120. <version>1.0-alpha-21</version>
  121. </dependency>
  122. </dependencies>
  123. </plugin>
  124. <plugin>
  125. <groupId>org.apache.maven.plugins</groupId>
  126. <artifactId>maven-assembly-plugin</artifactId>
  127. <version>2.2-beta-3</version>
  128. </plugin>
  129. <plugin>
  130. <groupId>org.apache.maven.plugins</groupId>
  131. <artifactId>maven-compiler-plugin</artifactId>
  132. <version>2.0.2</version>
  133. <configuration>
  134. <source>1.5</source>
  135. <target>1.5</target>
  136. </configuration>
  137. </plugin>
  138. <plugin>
  139. <groupId>org.apache.maven.plugins</groupId>
  140. <artifactId>maven-remote-resources-plugin</artifactId>
  141. <version>1.0-beta-2</version>
  142. </plugin>
  143. <plugin>
  144. <groupId>org.apache.maven.plugins</groupId>
  145. <artifactId>maven-deploy-plugin</artifactId>
  146. <version>2.3</version>
  147. </plugin>
  148. <plugin>
  149. <groupId>org.apache.maven.plugins</groupId>
  150. <artifactId>maven-gpg-plugin</artifactId>
  151. <version>1.0-alpha-4</version>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-install-plugin</artifactId>
  156. <version>2.2</version>
  157. </plugin>
  158. <plugin>
  159. <groupId>org.apache.maven.plugins</groupId>
  160. <artifactId>maven-jar-plugin</artifactId>
  161. <version>2.2</version>
  162. </plugin>
  163. <plugin>
  164. <groupId>org.apache.maven.plugins</groupId>
  165. <artifactId>maven-release-plugin</artifactId>
  166. <version>2.0-beta-7</version>
  167. <configuration>
  168. <tagBase>https://svn.apache.org/repos/asf/archiva/tags</tagBase>
  169. <useReleaseProfile>false</useReleaseProfile>
  170. <goals>deploy</goals>
  171. <preparationGoals>clean install</preparationGoals>
  172. <arguments>-Prelease</arguments>
  173. </configuration>
  174. </plugin>
  175. <plugin>
  176. <groupId>org.apache.maven.plugins</groupId>
  177. <artifactId>maven-resources-plugin</artifactId>
  178. <version>2.2</version>
  179. </plugin>
  180. <plugin>
  181. <groupId>org.apache.maven.plugins</groupId>
  182. <artifactId>maven-surefire-plugin</artifactId>
  183. <version>2.4.2</version>
  184. <configuration>
  185. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  186. </configuration>
  187. </plugin>
  188. <plugin>
  189. <artifactId>maven-idea-plugin</artifactId>
  190. <configuration>
  191. <jdkLevel>1.5</jdkLevel>
  192. </configuration>
  193. </plugin>
  194. </plugins>
  195. </pluginManagement>
  196. </build>
  197. <modules>
  198. <module>archiva-cli</module>
  199. <module>archiva-docs</module>
  200. <module>archiva-jetty</module>
  201. <module>archiva-modules</module>
  202. </modules>
  203. <dependencies>
  204. <dependency>
  205. <groupId>junit</groupId>
  206. <artifactId>junit</artifactId>
  207. <version>3.8.1</version>
  208. <scope>test</scope>
  209. </dependency>
  210. <dependency>
  211. <groupId>easymock</groupId>
  212. <artifactId>easymock</artifactId>
  213. <version>1.2_Java1.3</version>
  214. <scope>test</scope>
  215. </dependency>
  216. <dependency>
  217. <groupId>easymock</groupId>
  218. <artifactId>easymockclassextension</artifactId>
  219. <version>1.2</version>
  220. <scope>test</scope>
  221. </dependency>
  222. </dependencies>
  223. <dependencyManagement>
  224. <dependencies>
  225. <dependency>
  226. <groupId>httpunit</groupId>
  227. <artifactId>httpunit</artifactId>
  228. <version>1.6.2</version>
  229. <scope>test</scope>
  230. </dependency>
  231. <dependency>
  232. <groupId>org.apache.jackrabbit</groupId>
  233. <artifactId>jackrabbit-webdav</artifactId>
  234. <version>1.5.0</version>
  235. <exclusions>
  236. <exclusion>
  237. <groupId>commons-logging</groupId>
  238. <artifactId>commons-logging</artifactId>
  239. </exclusion>
  240. </exclusions>
  241. </dependency>
  242. <dependency>
  243. <groupId>xerces</groupId>
  244. <artifactId>xercesImpl</artifactId>
  245. <version>2.8.1</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>org.sonatype.nexus</groupId>
  249. <artifactId>nexus-indexer</artifactId>
  250. <version>2.0.0</version>
  251. <exclusions>
  252. <exclusion>
  253. <groupId>org.codehaus.plexus</groupId>
  254. <artifactId>plexus-container-default</artifactId>
  255. </exclusion>
  256. <exclusion>
  257. <groupId>classworlds</groupId>
  258. <artifactId>classworlds</artifactId>
  259. </exclusion>
  260. <exclusion>
  261. <groupId>commons-logging</groupId>
  262. <artifactId>commons-logging</artifactId>
  263. </exclusion>
  264. <exclusion>
  265. <groupId>velocity</groupId>
  266. <artifactId>velocity-dep</artifactId>
  267. </exclusion>
  268. <exclusion>
  269. <groupId>org.apache.maven</groupId>
  270. <artifactId>maven-plugin-registry</artifactId>
  271. </exclusion>
  272. <exclusion>
  273. <groupId>org.apache.maven</groupId>
  274. <artifactId>maven-settings</artifactId>
  275. </exclusion>
  276. </exclusions>
  277. </dependency>
  278. <dependency>
  279. <groupId>javax.activation</groupId>
  280. <artifactId>activation</artifactId>
  281. <version>1.1</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>org.apache.archiva</groupId>
  285. <artifactId>metadata-model</artifactId>
  286. <version>1.3-SNAPSHOT</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.apache.archiva</groupId>
  290. <artifactId>metadata-repository-api</artifactId>
  291. <version>1.3-SNAPSHOT</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.apache.archiva</groupId>
  295. <artifactId>metadata-repository-file</artifactId>
  296. <version>1.3-SNAPSHOT</version>
  297. </dependency>
  298. <dependency>
  299. <groupId>org.apache.archiva</groupId>
  300. <artifactId>repository-statistics</artifactId>
  301. <version>1.3-SNAPSHOT</version>
  302. </dependency>
  303. <dependency>
  304. <groupId>org.apache.archiva</groupId>
  305. <artifactId>problem-reports</artifactId>
  306. <version>1.3-SNAPSHOT</version>
  307. </dependency>
  308. <dependency>
  309. <groupId>org.apache.archiva</groupId>
  310. <artifactId>maven2-repository</artifactId>
  311. <version>1.3-SNAPSHOT</version>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.apache.archiva</groupId>
  315. <artifactId>archiva-applet</artifactId>
  316. <version>1.3-SNAPSHOT</version>
  317. </dependency>
  318. <dependency>
  319. <groupId>org.apache.archiva</groupId>
  320. <artifactId>archiva-artifact-converter</artifactId>
  321. <version>1.3-SNAPSHOT</version>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.apache.archiva</groupId>
  325. <artifactId>archiva-checksum</artifactId>
  326. <version>1.3-SNAPSHOT</version>
  327. </dependency>
  328. <dependency>
  329. <groupId>org.apache.archiva</groupId>
  330. <artifactId>archiva-common</artifactId>
  331. <version>1.3-SNAPSHOT</version>
  332. </dependency>
  333. <dependency>
  334. <groupId>org.apache.archiva</groupId>
  335. <artifactId>archiva-configuration</artifactId>
  336. <version>1.3-SNAPSHOT</version>
  337. </dependency>
  338. <dependency>
  339. <groupId>org.apache.archiva</groupId>
  340. <artifactId>archiva-consumer-api</artifactId>
  341. <version>1.3-SNAPSHOT</version>
  342. </dependency>
  343. <dependency>
  344. <groupId>org.apache.archiva</groupId>
  345. <artifactId>archiva-converter</artifactId>
  346. <version>1.3-SNAPSHOT</version>
  347. </dependency>
  348. <dependency>
  349. <groupId>org.apache.archiva</groupId>
  350. <artifactId>archiva-core-consumers</artifactId>
  351. <version>1.3-SNAPSHOT</version>
  352. </dependency>
  353. <dependency>
  354. <groupId>org.apache.archiva</groupId>
  355. <artifactId>archiva-indexer</artifactId>
  356. <version>1.3-SNAPSHOT</version>
  357. </dependency>
  358. <dependency>
  359. <groupId>org.apache.archiva</groupId>
  360. <artifactId>archiva-lucene-consumers</artifactId>
  361. <version>1.3-SNAPSHOT</version>
  362. </dependency>
  363. <dependency>
  364. <groupId>org.apache.archiva</groupId>
  365. <artifactId>archiva-model</artifactId>
  366. <version>1.3-SNAPSHOT</version>
  367. </dependency>
  368. <dependency>
  369. <groupId>org.apache.archiva</groupId>
  370. <artifactId>archiva-policies</artifactId>
  371. <version>1.3-SNAPSHOT</version>
  372. </dependency>
  373. <dependency>
  374. <groupId>org.apache.archiva</groupId>
  375. <artifactId>archiva-proxy</artifactId>
  376. <version>1.3-SNAPSHOT</version>
  377. </dependency>
  378. <dependency>
  379. <groupId>org.apache.archiva</groupId>
  380. <artifactId>archiva-repository-layer</artifactId>
  381. <version>1.3-SNAPSHOT</version>
  382. </dependency>
  383. <dependency>
  384. <groupId>org.apache.archiva</groupId>
  385. <artifactId>archiva-repository-scanner</artifactId>
  386. <version>1.3-SNAPSHOT</version>
  387. </dependency>
  388. <dependency>
  389. <groupId>org.apache.archiva</groupId>
  390. <artifactId>archiva-scheduler-api</artifactId>
  391. <version>1.3-SNAPSHOT</version>
  392. </dependency>
  393. <dependency>
  394. <groupId>org.apache.archiva</groupId>
  395. <artifactId>archiva-scheduler-repository</artifactId>
  396. <version>1.3-SNAPSHOT</version>
  397. </dependency>
  398. <dependency>
  399. <groupId>org.apache.archiva</groupId>
  400. <artifactId>archiva-scheduler-indexing</artifactId>
  401. <version>1.3-SNAPSHOT</version>
  402. </dependency>
  403. <dependency>
  404. <groupId>org.apache.archiva</groupId>
  405. <artifactId>archiva-security</artifactId>
  406. <version>1.3-SNAPSHOT</version>
  407. </dependency>
  408. <dependency>
  409. <groupId>org.apache.archiva</groupId>
  410. <artifactId>archiva-signature-consumers</artifactId>
  411. <version>1.3-SNAPSHOT</version>
  412. </dependency>
  413. <dependency>
  414. <groupId>org.apache.archiva</groupId>
  415. <artifactId>archiva-transaction</artifactId>
  416. <version>1.3-SNAPSHOT</version>
  417. </dependency>
  418. <dependency>
  419. <groupId>org.apache.archiva</groupId>
  420. <artifactId>archiva-docs</artifactId>
  421. <version>1.3-SNAPSHOT</version>
  422. <type>zip</type>
  423. <classifier>docs</classifier>
  424. </dependency>
  425. <dependency>
  426. <groupId>org.apache.archiva</groupId>
  427. <artifactId>archiva-webapp</artifactId>
  428. <version>1.3-SNAPSHOT</version>
  429. <type>war</type>
  430. </dependency>
  431. <dependency>
  432. <groupId>org.apache.archiva</groupId>
  433. <artifactId>archiva-xml-tools</artifactId>
  434. <version>1.3-SNAPSHOT</version>
  435. </dependency>
  436. <dependency>
  437. <groupId>org.apache.archiva</groupId>
  438. <artifactId>archiva-webdav</artifactId>
  439. <version>1.3-SNAPSHOT</version>
  440. </dependency>
  441. <dependency>
  442. <groupId>org.apache.archiva</groupId>
  443. <artifactId>archiva-rss</artifactId>
  444. <version>1.3-SNAPSHOT</version>
  445. </dependency>
  446. <dependency>
  447. <groupId>org.apache.archiva</groupId>
  448. <artifactId>archiva-xmlrpc-api</artifactId>
  449. <version>1.3-SNAPSHOT</version>
  450. </dependency>
  451. <dependency>
  452. <groupId>org.apache.archiva</groupId>
  453. <artifactId>archiva-xmlrpc-services</artifactId>
  454. <version>1.3-SNAPSHOT</version>
  455. </dependency>
  456. <dependency>
  457. <groupId>org.apache.archiva</groupId>
  458. <artifactId>archiva-xmlrpc-security</artifactId>
  459. <version>1.3-SNAPSHOT</version>
  460. </dependency>
  461. <dependency>
  462. <groupId>org.codehaus.plexus</groupId>
  463. <artifactId>plexus-spring</artifactId>
  464. <version>1.2</version>
  465. <exclusions>
  466. <exclusion>
  467. <groupId>org.codehaus.plexus</groupId>
  468. <artifactId>plexus-container-default</artifactId>
  469. </exclusion>
  470. </exclusions>
  471. </dependency>
  472. <dependency>
  473. <groupId>stax</groupId>
  474. <artifactId>stax</artifactId>
  475. <version>1.2.0</version>
  476. </dependency>
  477. <dependency>
  478. <groupId>commons-codec</groupId>
  479. <artifactId>commons-codec</artifactId>
  480. <version>1.3</version>
  481. </dependency>
  482. <dependency>
  483. <groupId>commons-collections</groupId>
  484. <artifactId>commons-collections</artifactId>
  485. <version>3.2</version>
  486. </dependency>
  487. <dependency>
  488. <groupId>commons-fileupload</groupId>
  489. <artifactId>commons-fileupload</artifactId>
  490. <version>1.2</version>
  491. </dependency>
  492. <dependency>
  493. <groupId>commons-io</groupId>
  494. <artifactId>commons-io</artifactId>
  495. <version>1.4</version>
  496. </dependency>
  497. <dependency>
  498. <groupId>commons-lang</groupId>
  499. <artifactId>commons-lang</artifactId>
  500. <version>2.2</version>
  501. </dependency>
  502. <dependency>
  503. <groupId>org.apache.derby</groupId>
  504. <artifactId>derby</artifactId>
  505. <version>10.1.3.1</version>
  506. </dependency>
  507. <dependency>
  508. <groupId>org.apache.derby</groupId>
  509. <artifactId>derbytools</artifactId>
  510. <version>10.1.3.1</version>
  511. </dependency>
  512. <dependency>
  513. <groupId>dom4j</groupId>
  514. <artifactId>dom4j</artifactId>
  515. <version>1.6.1</version>
  516. </dependency>
  517. <dependency>
  518. <groupId>hsqldb</groupId>
  519. <artifactId>hsqldb</artifactId>
  520. <version>1.8.0.7</version>
  521. <scope>test</scope>
  522. </dependency>
  523. <dependency>
  524. <groupId>jaxen</groupId>
  525. <artifactId>jaxen</artifactId>
  526. <version>1.1</version>
  527. <exclusions>
  528. <exclusion>
  529. <groupId>xom</groupId>
  530. <artifactId>xom</artifactId>
  531. </exclusion>
  532. </exclusions>
  533. </dependency>
  534. <dependency>
  535. <groupId>jpox</groupId>
  536. <artifactId>jpox</artifactId>
  537. <version>1.1.9</version>
  538. <exclusions>
  539. <exclusion>
  540. <groupId>javax.transaction</groupId>
  541. <artifactId>jta</artifactId>
  542. </exclusion>
  543. </exclusions>
  544. </dependency>
  545. <dependency>
  546. <groupId>javax.servlet</groupId>
  547. <artifactId>jsp-api</artifactId>
  548. <version>2.0</version>
  549. <scope>provided</scope>
  550. </dependency>
  551. <dependency>
  552. <groupId>javax.servlet</groupId>
  553. <artifactId>jstl</artifactId>
  554. <version>1.1.2</version>
  555. </dependency>
  556. <dependency>
  557. <groupId>log4j</groupId>
  558. <artifactId>log4j</artifactId>
  559. <version>1.2.14</version>
  560. </dependency>
  561. <dependency>
  562. <groupId>org.apache.lucene</groupId>
  563. <artifactId>lucene-core</artifactId>
  564. <version>2.4.0</version>
  565. </dependency>
  566. <dependency>
  567. <groupId>org.apache.lucene</groupId>
  568. <artifactId>lucene-queries</artifactId>
  569. <version>2.4.0</version>
  570. </dependency>
  571. <dependency>
  572. <groupId>javax.mail</groupId>
  573. <artifactId>mail</artifactId>
  574. <version>1.4</version>
  575. </dependency>
  576. <dependency>
  577. <groupId>org.apache.xmlrpc</groupId>
  578. <artifactId>xmlrpc-server</artifactId>
  579. <version>3.1</version>
  580. </dependency>
  581. <dependency>
  582. <groupId>org.apache.maven</groupId>
  583. <artifactId>maven-model</artifactId>
  584. <version>${maven3x.version}</version>
  585. </dependency>
  586. <dependency>
  587. <groupId>org.apache.maven</groupId>
  588. <artifactId>maven-model-builder</artifactId>
  589. <version>${maven3x.version}</version>
  590. </dependency>
  591. <dependency>
  592. <groupId>org.codehaus.plexus</groupId>
  593. <artifactId>plexus-component-api</artifactId>
  594. <version>1.0-alpha-22</version>
  595. </dependency>
  596. <dependency>
  597. <groupId>org.codehaus.plexus</groupId>
  598. <artifactId>plexus-digest</artifactId>
  599. <version>1.1</version>
  600. </dependency>
  601. <dependency>
  602. <groupId>org.codehaus.plexus</groupId>
  603. <artifactId>plexus-expression-evaluator</artifactId>
  604. <version>1.0-rc1</version>
  605. <exclusions>
  606. <exclusion>
  607. <groupId>org.codehaus.plexus</groupId>
  608. <artifactId>plexus-container-default</artifactId>
  609. </exclusion>
  610. </exclusions>
  611. </dependency>
  612. <dependency>
  613. <groupId>org.codehaus.plexus</groupId>
  614. <artifactId>plexus-i18n</artifactId>
  615. <version>1.0-beta-6</version>
  616. <exclusions>
  617. <exclusion>
  618. <groupId>org.codehaus.plexus</groupId>
  619. <artifactId>plexus-container-default</artifactId>
  620. </exclusion>
  621. </exclusions>
  622. </dependency>
  623. <dependency>
  624. <groupId>org.codehaus.plexus</groupId>
  625. <artifactId>plexus-quartz</artifactId>
  626. <version>1.0-alpha-3</version>
  627. <exclusions>
  628. <exclusion>
  629. <groupId>commons-logging</groupId>
  630. <artifactId>commons-logging</artifactId>
  631. </exclusion>
  632. <exclusion>
  633. <groupId>org.codehaus.plexus</groupId>
  634. <artifactId>plexus-container-default</artifactId>
  635. </exclusion>
  636. </exclusions>
  637. </dependency>
  638. <dependency>
  639. <groupId>org.codehaus.plexus</groupId>
  640. <artifactId>plexus-slf4j-logging</artifactId>
  641. <version>1.1-alpha-1</version>
  642. <exclusions>
  643. <exclusion>
  644. <groupId>org.slf4j</groupId>
  645. <artifactId>slf4j-simple</artifactId>
  646. </exclusion>
  647. <exclusion>
  648. <groupId>org.codehaus.plexus</groupId>
  649. <artifactId>plexus-container-default</artifactId>
  650. </exclusion>
  651. </exclusions>
  652. </dependency>
  653. <dependency>
  654. <groupId>org.codehaus.plexus</groupId>
  655. <artifactId>plexus-taskqueue</artifactId>
  656. <version>1.0-alpha-8</version>
  657. </dependency>
  658. <dependency>
  659. <groupId>org.codehaus.plexus</groupId>
  660. <artifactId>plexus-utils</artifactId>
  661. <version>1.4.5</version>
  662. </dependency>
  663. <dependency>
  664. <groupId>org.codehaus.plexus.cache</groupId>
  665. <artifactId>plexus-cache-api</artifactId>
  666. <version>1.0-alpha-2</version>
  667. <exclusions>
  668. <exclusion>
  669. <groupId>org.codehaus.plexus</groupId>
  670. <artifactId>plexus-container-default</artifactId>
  671. </exclusion>
  672. </exclusions>
  673. </dependency>
  674. <dependency>
  675. <groupId>org.codehaus.plexus.cache</groupId>
  676. <artifactId>plexus-cache-ehcache</artifactId>
  677. <version>1.0-alpha-2</version>
  678. <exclusions>
  679. <exclusion>
  680. <groupId>org.codehaus.plexus</groupId>
  681. <artifactId>plexus-container-default</artifactId>
  682. </exclusion>
  683. </exclusions>
  684. </dependency>
  685. <!-- redback -->
  686. <dependency>
  687. <groupId>org.codehaus.redback</groupId>
  688. <artifactId>redback-rbac-memory</artifactId>
  689. <version>${redback.version}</version>
  690. <scope>test</scope>
  691. <exclusions>
  692. <exclusion>
  693. <groupId>commons-logging</groupId>
  694. <artifactId>commons-logging</artifactId>
  695. </exclusion>
  696. </exclusions>
  697. </dependency>
  698. <dependency>
  699. <groupId>org.codehaus.redback</groupId>
  700. <artifactId>redback-users-memory</artifactId>
  701. <version>${redback.version}</version>
  702. <scope>test</scope>
  703. <exclusions>
  704. <exclusion>
  705. <groupId>commons-logging</groupId>
  706. <artifactId>commons-logging</artifactId>
  707. </exclusion>
  708. </exclusions>
  709. </dependency>
  710. <dependency>
  711. <groupId>org.codehaus.redback</groupId>
  712. <artifactId>redback-keys-memory</artifactId>
  713. <version>${redback.version}</version>
  714. <scope>test</scope>
  715. <exclusions>
  716. <exclusion>
  717. <groupId>commons-logging</groupId>
  718. <artifactId>commons-logging</artifactId>
  719. </exclusion>
  720. </exclusions>
  721. </dependency>
  722. <dependency>
  723. <groupId>org.codehaus.redback</groupId>
  724. <artifactId>redback-rbac-model</artifactId>
  725. <version>${redback.version}</version>
  726. <exclusions>
  727. <exclusion>
  728. <groupId>commons-logging</groupId>
  729. <artifactId>commons-logging</artifactId>
  730. </exclusion>
  731. </exclusions>
  732. </dependency>
  733. <dependency>
  734. <groupId>org.codehaus.redback</groupId>
  735. <artifactId>redback-authorization-rbac</artifactId>
  736. <version>${redback.version}</version>
  737. <exclusions>
  738. <exclusion>
  739. <groupId>commons-logging</groupId>
  740. <artifactId>commons-logging</artifactId>
  741. </exclusion>
  742. </exclusions>
  743. </dependency>
  744. <dependency>
  745. <groupId>org.codehaus.redback</groupId>
  746. <artifactId>redback-rbac-role-manager</artifactId>
  747. <version>${redback.version}</version>
  748. <exclusions>
  749. <exclusion>
  750. <groupId>commons-logging</groupId>
  751. <artifactId>commons-logging</artifactId>
  752. </exclusion>
  753. </exclusions>
  754. </dependency>
  755. <dependency>
  756. <groupId>org.codehaus.redback</groupId>
  757. <artifactId>redback-system</artifactId>
  758. <version>${redback.version}</version>
  759. <exclusions>
  760. <exclusion>
  761. <groupId>commons-logging</groupId>
  762. <artifactId>commons-logging</artifactId>
  763. </exclusion>
  764. </exclusions>
  765. </dependency>
  766. <dependency>
  767. <groupId>org.codehaus.redback</groupId>
  768. <artifactId>redback-common-integrations</artifactId>
  769. <version>${redback.version}</version>
  770. <exclusions>
  771. <exclusion>
  772. <groupId>commons-logging</groupId>
  773. <artifactId>commons-logging</artifactId>
  774. </exclusion>
  775. </exclusions>
  776. </dependency>
  777. <dependency>
  778. <groupId>org.codehaus.redback</groupId>
  779. <artifactId>redback-struts2-content</artifactId>
  780. <version>${redback.version}</version>
  781. <type>war</type>
  782. <exclusions>
  783. <exclusion>
  784. <groupId>classworlds</groupId>
  785. <artifactId>classworlds</artifactId>
  786. </exclusion>
  787. <exclusion>
  788. <groupId>commons-logging</groupId>
  789. <artifactId>commons-logging</artifactId>
  790. </exclusion>
  791. </exclusions>
  792. </dependency>
  793. <dependency>
  794. <groupId>org.codehaus.redback</groupId>
  795. <artifactId>redback-struts2-integration</artifactId>
  796. <version>${redback.version}</version>
  797. <exclusions>
  798. <exclusion>
  799. <groupId>classworlds</groupId>
  800. <artifactId>classworlds</artifactId>
  801. </exclusion>
  802. <exclusion>
  803. <groupId>plexus</groupId>
  804. <artifactId>plexus-utils</artifactId>
  805. </exclusion>
  806. <exclusion>
  807. <groupId>velocity</groupId>
  808. <artifactId>velocity-dep</artifactId>
  809. </exclusion>
  810. <exclusion>
  811. <groupId>commons-logging</groupId>
  812. <artifactId>commons-logging</artifactId>
  813. </exclusion>
  814. </exclusions>
  815. </dependency>
  816. <!-- redback -->
  817. <dependency>
  818. <groupId>org.codehaus.plexus.registry</groupId>
  819. <artifactId>plexus-registry-api</artifactId>
  820. <version>1.0-alpha-2</version>
  821. <exclusions>
  822. <exclusion>
  823. <groupId>org.codehaus.plexus</groupId>
  824. <artifactId>plexus-container-default</artifactId>
  825. </exclusion>
  826. </exclusions>
  827. </dependency>
  828. <dependency>
  829. <groupId>org.codehaus.plexus.registry</groupId>
  830. <artifactId>plexus-registry-commons</artifactId>
  831. <version>1.0-alpha-2</version>
  832. <exclusions>
  833. <exclusion>
  834. <groupId>ant</groupId>
  835. <artifactId>ant-optional</artifactId>
  836. </exclusion>
  837. <exclusion>
  838. <groupId>jdom</groupId>
  839. <artifactId>jdom</artifactId>
  840. </exclusion>
  841. <exclusion>
  842. <groupId>commons-logging</groupId>
  843. <artifactId>commons-logging-api</artifactId>
  844. </exclusion>
  845. <exclusion>
  846. <groupId>commons-logging</groupId>
  847. <artifactId>commons-logging</artifactId>
  848. </exclusion>
  849. </exclusions>
  850. </dependency>
  851. <dependency>
  852. <groupId>commons-logging</groupId>
  853. <artifactId>commons-logging-api</artifactId>
  854. <version>1.1</version>
  855. </dependency>
  856. <dependency>
  857. <groupId>javax.servlet</groupId>
  858. <artifactId>servlet-api</artifactId>
  859. <version>2.4</version>
  860. </dependency>
  861. <dependency>
  862. <groupId>opensymphony</groupId>
  863. <artifactId>sitemesh</artifactId>
  864. <version>2.2.1</version>
  865. </dependency>
  866. <dependency>
  867. <groupId>org.slf4j</groupId>
  868. <artifactId>slf4j-api</artifactId>
  869. <version>${slf4j.version}</version>
  870. </dependency>
  871. <dependency>
  872. <groupId>org.slf4j</groupId>
  873. <artifactId>jcl-over-slf4j</artifactId>
  874. <version>${slf4j.version}</version>
  875. <scope>runtime</scope>
  876. </dependency>
  877. <dependency>
  878. <groupId>org.slf4j</groupId>
  879. <artifactId>slf4j-jdk14</artifactId>
  880. <version>${slf4j.version}</version>
  881. <scope>runtime</scope>
  882. </dependency>
  883. <dependency>
  884. <groupId>org.slf4j</groupId>
  885. <artifactId>slf4j-simple</artifactId>
  886. <version>${slf4j.version}</version>
  887. <scope>test</scope>
  888. </dependency>
  889. <dependency>
  890. <groupId>org.slf4j</groupId>
  891. <artifactId>slf4j-log4j12</artifactId>
  892. <version>${slf4j.version}</version>
  893. <scope>runtime</scope>
  894. </dependency>
  895. <dependency>
  896. <groupId>taglibs</groupId>
  897. <artifactId>standard</artifactId>
  898. <version>1.1.2</version>
  899. </dependency>
  900. <dependency>
  901. <groupId>org.apache.maven.wagon</groupId>
  902. <artifactId>wagon-file</artifactId>
  903. <version>${wagon.version}</version>
  904. </dependency>
  905. <dependency>
  906. <groupId>org.apache.maven.wagon</groupId>
  907. <artifactId>wagon-http-lightweight</artifactId>
  908. <version>${wagon.version}</version>
  909. <exclusions>
  910. <exclusion>
  911. <groupId>nekohtml</groupId>
  912. <artifactId>xercesMinimal</artifactId>
  913. </exclusion>
  914. </exclusions>
  915. </dependency>
  916. <dependency>
  917. <groupId>org.apache.maven.wagon</groupId>
  918. <artifactId>wagon-provider-api</artifactId>
  919. <version>${wagon.version}</version>
  920. </dependency>
  921. <dependency>
  922. <groupId>org.apache.struts</groupId>
  923. <artifactId>struts2-core</artifactId>
  924. <version>2.0.11.2</version>
  925. <exclusions>
  926. <exclusion>
  927. <groupId>commons-logging</groupId>
  928. <artifactId>commons-logging</artifactId>
  929. </exclusion>
  930. </exclusions>
  931. </dependency>
  932. <dependency>
  933. <groupId>org.apache.struts</groupId>
  934. <artifactId>struts2-spring-plugin</artifactId>
  935. <version>2.0.11.2</version>
  936. <exclusions>
  937. <exclusion>
  938. <groupId>commons-logging</groupId>
  939. <artifactId>commons-logging</artifactId>
  940. </exclusion>
  941. </exclusions>
  942. </dependency>
  943. <dependency>
  944. <groupId>xmlunit</groupId>
  945. <artifactId>xmlunit</artifactId>
  946. <version>1.0</version>
  947. </dependency>
  948. <dependency>
  949. <groupId>joda-time</groupId>
  950. <artifactId>joda-time</artifactId>
  951. <version>1.5.2</version>
  952. </dependency>
  953. <dependency>
  954. <groupId>org.mortbay.jetty</groupId>
  955. <artifactId>jetty</artifactId>
  956. <version>${jetty.version}</version>
  957. </dependency>
  958. <!-- xmlrpc -->
  959. <dependency>
  960. <groupId>com.atlassian.xmlrpc</groupId>
  961. <artifactId>atlassian-xmlrpc-binder-annotations</artifactId>
  962. <version>${binder.version}</version>
  963. </dependency>
  964. <dependency>
  965. <groupId>com.atlassian.xmlrpc</groupId>
  966. <artifactId>atlassian-xmlrpc-binder-server-spring</artifactId>
  967. <version>${binder.version}</version>
  968. <exclusions>
  969. <exclusion>
  970. <groupId>commons-logging</groupId>
  971. <artifactId>commons-logging</artifactId>
  972. </exclusion>
  973. </exclusions>
  974. </dependency>
  975. <dependency>
  976. <groupId>com.atlassian.xmlrpc</groupId>
  977. <artifactId>atlassian-xmlrpc-binder</artifactId>
  978. <version>${binder.version}</version>
  979. </dependency>
  980. <dependency>
  981. <groupId>com.atlassian.xmlrpc</groupId>
  982. <artifactId>atlassian-xmlrpc-binder-testing</artifactId>
  983. <version>${binder.version}</version>
  984. <scope>test</scope>
  985. </dependency>
  986. <!-- Transitive versions to manage -->
  987. <dependency>
  988. <groupId>org.springframework</groupId>
  989. <artifactId>spring-context</artifactId>
  990. <version>${spring.version}</version>
  991. <exclusions>
  992. <exclusion>
  993. <groupId>commons-logging</groupId>
  994. <artifactId>commons-logging</artifactId>
  995. </exclusion>
  996. </exclusions>
  997. </dependency>
  998. <dependency>
  999. <groupId>org.springframework</groupId>
  1000. <artifactId>spring-web</artifactId>
  1001. <version>${spring.version}</version>
  1002. <exclusions>
  1003. <exclusion>
  1004. <groupId>commons-logging</groupId>
  1005. <artifactId>commons-logging</artifactId>
  1006. </exclusion>
  1007. </exclusions>
  1008. </dependency>
  1009. <dependency>
  1010. <groupId>org.springframework</groupId>
  1011. <artifactId>spring-beans</artifactId>
  1012. <version>${spring.version}</version>
  1013. <exclusions>
  1014. <exclusion>
  1015. <groupId>commons-logging</groupId>
  1016. <artifactId>commons-logging</artifactId>
  1017. </exclusion>
  1018. </exclusions>
  1019. </dependency>
  1020. <!-- use spring test in xmlrpc?
  1021. <dependency>
  1022. <groupId>org.springframework</groupId>
  1023. <artifactId>spring-test</artifactId>
  1024. <version>2.5.1</version>
  1025. <exclusions>
  1026. <exclusion>
  1027. <groupId>commons-logging</groupId>
  1028. <artifactId>commons-logging</artifactId>
  1029. </exclusion>
  1030. </exclusions>
  1031. </dependency>
  1032. -->
  1033. <dependency>
  1034. <groupId>jdom</groupId>
  1035. <artifactId>jdom</artifactId>
  1036. <version>1.0</version>
  1037. </dependency>
  1038. <dependency>
  1039. <groupId>org.apache.maven.shared</groupId>
  1040. <artifactId>maven-model-converter</artifactId>
  1041. <version>2.1</version>
  1042. <exclusions>
  1043. <exclusion>
  1044. <groupId>org.codehaus.plexus</groupId>
  1045. <artifactId>plexus-container-default</artifactId>
  1046. </exclusion>
  1047. </exclusions>
  1048. </dependency>
  1049. <dependency>
  1050. <groupId>org.apache.maven.shared</groupId>
  1051. <artifactId>maven-dependency-tree</artifactId>
  1052. <version>1.2</version>
  1053. <exclusions>
  1054. <exclusion>
  1055. <groupId>org.codehaus.plexus</groupId>
  1056. <artifactId>plexus-container-default</artifactId>
  1057. </exclusion>
  1058. </exclusions>
  1059. </dependency>
  1060. <dependency>
  1061. <groupId>org.apache.maven</groupId>
  1062. <artifactId>maven-artifact-manager</artifactId>
  1063. <version>${maven.version}</version>
  1064. <exclusions>
  1065. <exclusion>
  1066. <groupId>org.codehaus.plexus</groupId>
  1067. <artifactId>plexus-container-default</artifactId>
  1068. </exclusion>
  1069. </exclusions>
  1070. </dependency>
  1071. <dependency>
  1072. <groupId>org.apache.maven</groupId>
  1073. <artifactId>maven-artifact</artifactId>
  1074. <version>${maven.version}</version>
  1075. </dependency>
  1076. <dependency>
  1077. <groupId>org.apache.maven</groupId>
  1078. <artifactId>maven-repository-metadata</artifactId>
  1079. <version>${maven.version}</version>
  1080. </dependency>
  1081. <dependency>
  1082. <groupId>net.sf.ehcache</groupId>
  1083. <artifactId>ehcache</artifactId>
  1084. <version>1.3.0</version>
  1085. <exclusions>
  1086. <exclusion>
  1087. <groupId>commons-logging</groupId>
  1088. <artifactId>commons-logging</artifactId>
  1089. </exclusion>
  1090. </exclusions>
  1091. </dependency>
  1092. </dependencies>
  1093. </dependencyManagement>
  1094. <properties>
  1095. <maven.version>2.0.8</maven.version>
  1096. <maven3x.version>3.0-alpha-4</maven3x.version>
  1097. <wagon.version>1.0-beta-5</wagon.version>
  1098. <redback.version>1.2.2</redback.version>
  1099. <jetty.version>6.1.19</jetty.version>
  1100. <slf4j.version>1.5.8</slf4j.version>
  1101. <binder.version>0.9</binder.version>
  1102. <spring.version>2.5.6</spring.version>
  1103. </properties>
  1104. <profiles>
  1105. <profile>
  1106. <id>release</id>
  1107. <build>
  1108. <plugins>
  1109. <plugin>
  1110. <artifactId>maven-assembly-plugin</artifactId>
  1111. <inherited>false</inherited>
  1112. <configuration>
  1113. <descriptors>
  1114. <descriptor>src/main/assembly/src.xml</descriptor>
  1115. </descriptors>
  1116. <tarLongFileMode>gnu</tarLongFileMode>
  1117. <finalName>apache-archiva-${project.version}-src</finalName>
  1118. </configuration>
  1119. <executions>
  1120. <execution>
  1121. <id>make-assembly</id>
  1122. <phase>package</phase>
  1123. <goals>
  1124. <goal>single</goal>
  1125. </goals>
  1126. </execution>
  1127. </executions>
  1128. </plugin>
  1129. <!-- We want to sign the artifact, the POM, and all attached artifacts -->
  1130. <plugin>
  1131. <groupId>org.apache.maven.plugins</groupId>
  1132. <artifactId>maven-gpg-plugin</artifactId>
  1133. <configuration>
  1134. <passphrase>${gpg.passphrase}</passphrase>
  1135. </configuration>
  1136. <executions>
  1137. <execution>
  1138. <goals>
  1139. <goal>sign</goal>
  1140. </goals>
  1141. </execution>
  1142. </executions>
  1143. </plugin>
  1144. <!-- We want to deploy the artifact to a staging location for perusal -->
  1145. <plugin>
  1146. <inherited>true</inherited>
  1147. <groupId>org.apache.maven.plugins</groupId>
  1148. <artifactId>maven-deploy-plugin</artifactId>
  1149. <configuration>
  1150. <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
  1151. <updateReleaseInfo>true</updateReleaseInfo>
  1152. </configuration>
  1153. </plugin>
  1154. <plugin>
  1155. <groupId>org.apache.maven.plugins</groupId>
  1156. <artifactId>maven-source-plugin</artifactId>
  1157. <version>2.0.4</version>
  1158. <executions>
  1159. <execution>
  1160. <id>attach-sources</id>
  1161. <goals>
  1162. <goal>jar</goal>
  1163. </goals>
  1164. </execution>
  1165. </executions>
  1166. </plugin>
  1167. <plugin>
  1168. <groupId>org.apache.maven.plugins</groupId>
  1169. <artifactId>maven-javadoc-plugin</artifactId>
  1170. <version>2.4</version>
  1171. <executions>
  1172. <execution>
  1173. <id>attach-javadocs</id>
  1174. <goals>
  1175. <goal>jar</goal>
  1176. </goals>
  1177. </execution>
  1178. </executions>
  1179. </plugin>
  1180. </plugins>
  1181. </build>
  1182. </profile>
  1183. </profiles>
  1184. </project>