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.

archiva-1.2.1.pom 39KB

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