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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. <artifactId>archiva-web</artifactId>
  24. <groupId>org.apache.archiva</groupId>
  25. <version>3.0.0-SNAPSHOT</version>
  26. </parent>
  27. <modelVersion>4.0.0</modelVersion>
  28. <artifactId>archiva-rss</artifactId>
  29. <name>Archiva Web :: RSS</name>
  30. <properties>
  31. <site.staging.base>${project.parent.parent.basedir}</site.staging.base>
  32. </properties>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.apache.archiva</groupId>
  36. <artifactId>archiva-repository-api</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.archiva</groupId>
  40. <artifactId>metadata-repository-api</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.archiva</groupId>
  44. <artifactId>metadata-model</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring-context</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>jakarta.inject</groupId>
  52. <artifactId>jakarta.inject-api</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.rometools</groupId>
  56. <artifactId>rome</artifactId>
  57. </dependency>
  58. <!-- TEST Scope -->
  59. <dependency>
  60. <groupId>org.apache.maven.wagon</groupId>
  61. <artifactId>wagon-http</artifactId>
  62. <scope>test</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.maven.wagon</groupId>
  66. <artifactId>wagon-http-lightweight</artifactId>
  67. <scope>test</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.archiva.maven</groupId>
  71. <artifactId>archiva-maven-repository</artifactId>
  72. <scope>test</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.archiva</groupId>
  76. <artifactId>archiva-repository-layer</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.archiva</groupId>
  81. <artifactId>archiva-storage-fs</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.apache.archiva</groupId>
  86. <artifactId>archiva-filelock</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.easymock</groupId>
  91. <artifactId>easymock</artifactId>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.archiva</groupId>
  96. <artifactId>archiva-test-utils</artifactId>
  97. <version>${project.version}</version>
  98. <scope>test</scope>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework</groupId>
  102. <artifactId>spring-test</artifactId>
  103. <scope>test</scope>
  104. </dependency>
  105. </dependencies>
  106. <build>
  107. <pluginManagement>
  108. <plugins>
  109. <plugin>
  110. <groupId>org.apache.rat</groupId>
  111. <artifactId>apache-rat-plugin</artifactId>
  112. <configuration>
  113. <excludes>
  114. <exclude>src/test/repositories/test-repo/**</exclude>
  115. <exclude>src/test/repositories/snapshot-repo/**</exclude>
  116. </excludes>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </pluginManagement>
  121. <plugins>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-surefire-plugin</artifactId>
  125. <configuration>
  126. <reuseForks>false</reuseForks>
  127. <argLine>-Xms512m -Xmx1024m -server</argLine>
  128. <systemPropertyVariables>
  129. <appserver.base>${project.build.directory}/appserver-base</appserver.base>
  130. <plexus.home>${project.build.directory}/appserver-base</plexus.home>
  131. <derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
  132. <archiva.user.configFileName>${basedir}/target/archiva.xml</archiva.user.configFileName>
  133. <test.resources.path>${project.build.testOutputDirectory}</test.resources.path>
  134. <redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
  135. <redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
  136. <basedir>${basedir}</basedir>
  137. <expectedVersion>${project.version}</expectedVersion>
  138. <archiva.logMissingI18n>true</archiva.logMissingI18n>
  139. <java.awt.headless>true</java.awt.headless>
  140. <archiva.repositorySessionFactory.id>test</archiva.repositorySessionFactory.id>
  141. <openjpa.Log>${openjpa.Log}</openjpa.Log>
  142. </systemPropertyVariables>
  143. </configuration>
  144. </plugin>
  145. </plugins>
  146. </build>
  147. </project>