Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

pom.xml 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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-base</artifactId>
  24. <version>1.0.3-SNAPSHOT</version>
  25. </parent>
  26. <modelVersion>4.0.0</modelVersion>
  27. <artifactId>archiva-proxy</artifactId>
  28. <name>Archiva Base :: Proxy</name>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.apache.maven.archiva</groupId>
  32. <artifactId>archiva-configuration</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.maven.archiva</groupId>
  36. <artifactId>archiva-repository-layer</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-io</groupId>
  40. <artifactId>commons-io</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.maven.wagon</groupId>
  44. <artifactId>wagon-file</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.maven.wagon</groupId>
  48. <artifactId>wagon-provider-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.codehaus.plexus</groupId>
  52. <artifactId>plexus-digest</artifactId>
  53. <exclusions>
  54. <exclusion>
  55. <groupId>org.codehaus.plexus</groupId>
  56. <artifactId>plexus-container-default</artifactId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.codehaus.plexus</groupId>
  62. <artifactId>plexus-component-api</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.codehaus.plexus</groupId>
  66. <artifactId>plexus-container-default</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.codehaus.plexus.registry</groupId>
  70. <artifactId>plexus-registry-commons</artifactId>
  71. <scope>test</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>xmlunit</groupId>
  75. <artifactId>xmlunit</artifactId>
  76. <scope>test</scope>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.codehaus.plexus</groupId>
  80. <artifactId>plexus-slf4j-logging</artifactId>
  81. <scope>test</scope>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.slf4j</groupId>
  85. <artifactId>slf4j-log4j12</artifactId>
  86. <scope>test</scope>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.apache.maven.plugins</groupId>
  93. <artifactId>maven-surefire-plugin</artifactId>
  94. <version>2.2</version>
  95. <configuration>
  96. <excludes>
  97. <exclude>**/Abstract*</exclude>
  98. <exclude>**/*TestCase.java</exclude>
  99. <exclude>**/*Tests.java</exclude>
  100. <exclude>**/*TestSuite.java</exclude>
  101. <exclude>**/RelocateTransfer*</exclude>
  102. </excludes>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>