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.

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