<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <artifactId>thirdparty</artifactId>
    <groupId>org.openimaj</groupId>
    <version>1.3.1</version>
    <relativePath>../</relativePath>
  </parent>
  <groupId>org.openimaj</groupId>
  <artifactId>JTransforms</artifactId>
  <version>1.3.1</version>
  <packaging>jar</packaging>
  <name>JTransforms</name>
  <description>
      JTransforms is the first, open source, multithreaded FFT library written 
      in pure Java. Currently, four types of transforms are available: 
      Discrete Fourier Transform (DFT), Discrete Cosine Transform (DCT), 
      Discrete Sine Transform (DST) and Discrete Hartley Transform (DHT). 
      The code is derived from General Purpose FFT Package written by 
      Takuya Ooura and from Java FFTPack written by Baoshe Zhang. This 
      version has been modified to daemonize threads and stop any application 
      using the library waiting after execution has finished, and is based on
      revision 29 of the svn version of the code from 2014-05-18.
  </description>
  <url>https://sites.google.com/site/piotrwendykier/software/jtransforms</url>
  <licenses>
    <license>
      <name>MPL 2.0</name>
      <url>http://www.mozilla.org/MPL/</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <url>https://jtransforms.svn.sourceforge.net/svnroot/jtransforms/tags/openimaj-1.3.1/svnroot/jtransforms </url>
    <connection>https://jtransforms.svn.sourceforge.net/svnroot/jtransforms/tags/openimaj-1.3.1/svnroot/jtransforms </connection>
  </scm>
  <developers>
    <developer>
      <id>Piotr Wendykier</id>
      <name>Piotr Wendykier</name>
      <email>piotr.wendykier@gmail.com</email>
    </developer>
  </developers>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>  
  
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
            <source>1.5</source>
            <target>1.5</target>
            </configuration>
        </plugin>
        
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <executions>
                <execution>
                <id>attach-sources</id>
                <goals>
                    <goal>jar</goal>
                </goals>
                </execution>
            </executions>
        </plugin>
        
        <plugin>
        <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <executions>
                <execution>
                <id>attach-javadocs</id>
                <goals>
                    <goal>jar</goal>
                </goals>
                </execution>
            </executions>
        </plugin>
        
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.17</version>
            <configuration>
                <!-- tests are very slow, so disabled by default -->
                <skipTests>true</skipTests>
            </configuration>
        </plugin>

    </plugins>
  </build>
</project>
