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

  <parent>
    <groupId>net.sf.beezle.maven.poms</groupId>
    <artifactId>parent</artifactId>
    <version>1.0.7</version>
    <relativePath />
  </parent>

  <name>Sushi</name>
  <description>See ${project.url}.</description>
  <url>https://sourceforge.net/apps/trac/beezle/wiki/Sushi</url>
  <inceptionYear>2004</inceptionYear>

  <licenses>
    <license>
      <name>GNU Lesser General Public License, Version 2.1</name>
      <url>http://www.gnu.org/licenses/lgpl-2.1.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <groupId>net.sf.beezle.sushi</groupId>
  <artifactId>sushi</artifactId>
  <version>2.6.2</version>
  <packaging>jar</packaging>

  <scm>
    <connection>scm:svn:https://beezle.svn.sourceforge.net/svnroot/beezle/sushi/tags/sushi-2.6.2</connection>
    <developerConnection>scm:svn:https://beezle.svn.sourceforge.net/svnroot/beezle/sushi/tags/sushi-2.6.2</developerConnection>
    <url>http://beezle.svn.sourceforge.net/viewvc/beezle/sushi/tags/sushi-2.6.2</url>
  </scm>

  <dependencies>
    <!-- if you want SshFilesystem: -->
    <dependency>
      <groupId>com.jcraft</groupId>
      <artifactId>jsch</artifactId>
      <!-- TODO: 0.1.44 does not compile; 0.1.44-1 still fails the specialNames test for * and ? -->
      <version>0.1.42</version>
      <optional>true</optional>
    </dependency>

    <!-- if you want SvnFilesystem: -->
    <dependency>
      <groupId>org.tmatesoft.svnkit</groupId>
      <artifactId>svnkit</artifactId>
      <!-- TODO: switch to 1.3.2 when their dependency net.java.dev.jna:jna:jar:3.2.3 becomes available -->
      <version>1.3.1</version>
      <optional>true</optional>
    </dependency>

    <!-- if you want WebdevFilesystem: -->
    <dependency>
      <groupId>org.apache.httpcomponents</groupId>
      <artifactId>httpcore</artifactId>
      <version>4.0.1</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>

    <!-- sushi has a base64 codec, this is to test it: -->
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.4</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <distributionManagement>
    <site>
      <id>sourceforge</id>
      <url>scp://shell.sourceforge.net/home/project-web/beezle/htdocs/sushi/site</url>
    </site>
  </distributionManagement>

  <build>
    <plugins>
      <plugin>
        <groupId>com.mycila.maven-license-plugin</groupId>
        <artifactId>maven-license-plugin</artifactId>
        <version>1.9.0</version>
        <configuration>
          <header>src/header.txt</header>
          <strictCheck>false</strictCheck><!-- TODO: setting this to true rejects every single source file!? -->
          <includes>
            <include>src/**/*.java</include>
          </includes>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>
