File: wagon-http-lightweight.xml

package info (click to toggle)
maven-repo-helper 1.10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,588 kB
  • sloc: java: 5,088; xml: 2,871; sh: 1,534; makefile: 60; perl: 14
file content (30 lines) | stat: -rw-r--r-- 1,040 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<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-4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.apache.maven.wagon</groupId>
    <artifactId>wagon-providers</artifactId>
    <version>1.0-beta-5</version>
    <relativePath>../pom.xml</relativePath>
  </parent>

  <artifactId>wagon-http-lightweight</artifactId>
  <name>Maven Wagon Lightweight HTTP Provider</name>
  <description>
    Wagon that gets and puts artifacts through http using standard Java library
  </description>

  <dependencies>
    <dependency>
      <groupId>${pom.groupId}</groupId>
      <artifactId>wagon-http-shared</artifactId>
      <version>${pom.version}</version>
      <exclusions>
        <exclusion>
          <groupId>commons-httpclient</groupId>
          <artifactId>commons-httpclient</artifactId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>