<?xml version="1.0" encoding="UTF-8"?>

<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">

	<modelVersion>4.0.0</modelVersion>

	<!-- The Basics -->
	<groupId>org.gvsig.maven.wagon</groupId>
	<artifactId>wagon-ftp</artifactId>
	<version>0.2</version>
	<dependencies>
		<dependency>
			<groupId>ftp4che</groupId>
			<artifactId>ftp4che</artifactId>
			<version>0.7.1</version>
		</dependency>
		<dependency>
			<groupId>log4j</groupId>
			<artifactId>log4j</artifactId>
			<version>1.2.12</version>
		</dependency>
		<dependency>
			<groupId>com.pyx4j</groupId>
			<artifactId>maven-plugin-log4j</artifactId>
			<version>1.0.1</version>
		</dependency>
	</dependencies>
	<parent>
		<artifactId>wagon-providers</artifactId>
		<groupId>org.apache.maven.wagon</groupId>
		<version>1.0-alpha-6</version>
	</parent>

	<!-- Build Settings -->
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<dependencies>
					<dependency>
						<groupId>checkstyle</groupId>
						<artifactId>checkstyle</artifactId>
						<version>4.4</version>
					</dependency>
					<dependency>
						<groupId>checkstyle</groupId>
						<artifactId>checkstyle-optional</artifactId>
						<version>4.4</version>
					</dependency>
				</dependencies>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<phase>verify</phase>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
	<reporting>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-checkstyle-plugin</artifactId>
				<configuration>
					<configLocation>build/checkstyle_gvsig.xml</configLocation>
					<propertyExpansion>
						basedir=${basedir}
          </propertyExpansion>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<configuration>
					<links>
						<link>http://java.sun.com/j2se/1.4.2/docs/api</link>
						<link>http://maven.apache.org/ref/current/apidocs</link>
					</links>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-jxr-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changelog-plugin</artifactId>
				<configuration>
					<type>range</type>
					<range>60</range>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-pmd-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-changes-plugin</artifactId>
				<reportSets>
					<reportSet>
						<reports>
							<report>changes-report</report>
						</reports>
					</reportSet>
				</reportSets>
				<configuration>
					<issueLinkTemplate>
						https://gvsig.org/trac/gvSIG-Activities/ticket/%ISSUE%
          </issueLinkTemplate>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>javancss-maven-plugin</artifactId>
        <version>2.0-beta-2</version>
      </plugin>
      
    </plugins>
  </reporting>

  <!-- More Project Information -->

  <name>Maven Wagon FTP4Che Provider</name>
  <description>
  Wagon that gets and puts artifacts from and to remote server using
  FTP protocol, through the ftp4che library.
  </description>
  <url>https://gvsig.org/web/production/activities/wagon-ftp-tls</url>
  <inceptionYear>2008</inceptionYear>
  <licenses>
    <license>
      <name>GPL Version 2</name>
      <url>http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt</url>
      <distribution>repo</distribution>
      <comments>
      "GPL" stands for "General Public License". The most widespread such
      license is the GNU General Public License, or GNU GPL for short.
      This can be further shortened to "GPL", when it is understood that the
      GNU GPL is the one intended.
      </comments>
    </license>
  </licenses>
  <organization>
    <name>gvSIG</name>
    <url>https://gvsig.org/web</url>
  </organization>
  <developers>
    <developer>
      <id>cordinyana</id>
      <name>Cèsar Ordiñana</name>
      <email>cordin@disid.com</email>
      <roles>
        <role>Project Lead</role>
        <role>Developer</role>
      </roles>
      <organization>DiSiD Technologies</organization>
      <organizationUrl>http://www.disid.com</organizationUrl>
      <properties>
      	<skypeid>cordinyana</skypeid>
      </properties>
    </developer>
  </developers>
  <contributors>
    <contributor>
      <name>Joaquín José del Cerro</name>
	  <email>jjdelcerro@iver.es</email>
	  <roles>
	    <role>gvSIG person in charge</role>
	  </roles>
	  <organization>IVER</organization>
	  <properties>
      	<skypeid>jjdelcerro</skypeid>
	  </properties>
    </contributor>
  </contributors>

  <distributionManagement>
    <repository>
      <id>gvsig-ftp-repository</id>
      <name>gvSIG maven FTP repository</name>
      <url>ftpes://downloads.gvsig.org/anon/pub/gvSIG-desktop/maven-repository</url>
    </repository>
    <snapshotRepository>
      <id>gvsig-ftp-repository</id>
      <name>gvSIG maven FTP repository</name>
      <url>ftpes://downloads.gvsig.org/anon/pub/gvSIG-desktop/maven-repository</url>
    </snapshotRepository>
  </distributionManagement>
  <!-- Environment Settings -->

  <issueManagement>
    <system>trac</system>
    <url>https://gvsig.org/trac/gvSIG-Activities/</url>
  </issueManagement>
  <ciManagement></ciManagement>
  <scm>
    <connection>
    	scm:svn:https://gvsig.org/svn/gvSIG-Activities/wagon-ftp-tls
    </connection>
    <developerConnection>
    	scm:svn:https://gvsig.org/svn/gvSIG-Activities/wagon-ftp-tls
    </developerConnection>
    <url>https://gvsig.org/trac/gvSIG-Activities/browser/wagon-ftp-tls/trunk</url>
    <tag>HEAD</tag>
  </scm>

</project>