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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2005-2006 The Apache Software Foundation.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <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">
  18. <modelVersion>4.0.0</modelVersion>
  19. <parent>
  20. <groupId>org.apache.archiva</groupId>
  21. <artifactId>archiva-modules</artifactId>
  22. <version>2.2.0-SNAPSHOT</version>
  23. </parent>
  24. <artifactId>archiva-web</artifactId>
  25. <name>Archiva :: Web</name>
  26. <packaging>pom</packaging>
  27. <modules>
  28. <module>archiva-security</module>
  29. <module>archiva-webdav</module>
  30. <module>archiva-rss</module>
  31. <module>archiva-test-mocks</module>
  32. <module>archiva-rest</module>
  33. <module>archiva-web-common</module>
  34. <module>archiva-webapp</module>
  35. </modules>
  36. <dependencyManagement>
  37. <dependencies>
  38. <dependency>
  39. <groupId>org.testng</groupId>
  40. <artifactId>testng</artifactId>
  41. <version>6.4</version>
  42. <scope>test</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.archiva</groupId>
  46. <artifactId>archiva-test-mocks</artifactId>
  47. <version>${project.version}</version>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.seleniumhq.selenium.client-drivers</groupId>
  52. <artifactId>selenium-java-client-driver</artifactId>
  53. <version>1.0.2</version>
  54. <scope>test</scope>
  55. <exclusions>
  56. <exclusion>
  57. <groupId>commons-logging</groupId>
  58. <artifactId>commons-logging</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. </dependencies>
  63. </dependencyManagement>
  64. <build>
  65. <pluginManagement>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.rat</groupId>
  69. <artifactId>apache-rat-plugin</artifactId>
  70. <configuration>
  71. <excludes>
  72. <!-- for when the profile is not activated -->
  73. <exclude>archiva-webapp-test/**</exclude>
  74. </excludes>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.codehaus.mojo</groupId>
  79. <artifactId>selenium-maven-plugin</artifactId>
  80. <version>${seleniumPluginVersion}</version>
  81. </plugin>
  82. </plugins>
  83. </pluginManagement>
  84. </build>
  85. </project>