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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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"
  21. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  22. <parent>
  23. <groupId>org.apache.maven.archiva</groupId>
  24. <artifactId>archiva-parent</artifactId>
  25. <version>1.0-alpha-1-SNAPSHOT</version>
  26. </parent>
  27. <modelVersion>4.0.0</modelVersion>
  28. <artifactId>archiva-database</artifactId>
  29. <name>Archiva Database</name>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.apache.maven.archiva</groupId>
  33. <artifactId>archiva-consumer-api</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.maven.archiva</groupId>
  37. <artifactId>archiva-configuration</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.maven.archiva</groupId>
  41. <artifactId>archiva-model</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.codehaus.plexus</groupId>
  45. <artifactId>plexus-jdo2</artifactId>
  46. <version>1.0-alpha-8</version>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>xerces</groupId>
  50. <artifactId>xercesImpl</artifactId>
  51. </exclusion>
  52. <exclusion>
  53. <groupId>xerces</groupId>
  54. <artifactId>xmlParserAPIs</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>jpox</groupId>
  60. <artifactId>jpox</artifactId>
  61. <version>1.1.7</version>
  62. <scope>compile</scope>
  63. <exclusions>
  64. <!-- targeting JDK 1.4 we don't need this -->
  65. <exclusion>
  66. <groupId>javax.sql</groupId>
  67. <artifactId>jdbc-stdext</artifactId>
  68. </exclusion>
  69. </exclusions>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.codehaus.plexus</groupId>
  73. <artifactId>plexus-container-default</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>commons-lang</groupId>
  77. <artifactId>commons-lang</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>commons-io</groupId>
  81. <artifactId>commons-io</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-logging</groupId>
  85. <artifactId>commons-logging</artifactId>
  86. <version>1.1</version>
  87. <exclusions>
  88. <exclusion>
  89. <groupId>logkit</groupId>
  90. <artifactId>logkit</artifactId>
  91. </exclusion>
  92. </exclusions>
  93. </dependency>
  94. <dependency>
  95. <groupId>log4j</groupId>
  96. <artifactId>log4j</artifactId>
  97. <version>1.2.8</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.derby</groupId>
  101. <artifactId>derby</artifactId>
  102. <version>10.2.1.6</version>
  103. </dependency>
  104. <!-- TEST DEPS -->
  105. <dependency>
  106. <groupId>hsqldb</groupId>
  107. <artifactId>hsqldb</artifactId>
  108. <version>1.8.0.7</version>
  109. <scope>test</scope>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.derby</groupId>
  113. <artifactId>derbytools</artifactId>
  114. <version>10.2.1.6</version>
  115. <scope>test</scope>
  116. </dependency>
  117. </dependencies>
  118. <build>
  119. <plugins>
  120. <plugin>
  121. <groupId>org.codehaus.plexus</groupId>
  122. <artifactId>plexus-maven-plugin</artifactId>
  123. </plugin>
  124. </plugins>
  125. </build>
  126. </project>