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

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