<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>
      <groupId>com.github.dandelion</groupId>
      <artifactId>dandelion-datatables</artifactId>
      <version>0.8.14</version>
   </parent>

   <artifactId>datatables-thymeleaf</artifactId>
   <packaging>jar</packaging>
   <name>Dandelion :: Datatables :: Thymeleaf Implementation</name>

   <properties>
      <thymeleaf.version>2.0.16</thymeleaf.version>
      
      <!-- Test dependencies -->
      <fluentlenium.version>0.7.6</fluentlenium.version>
      <phantomjsdriver.version>1.0.1</phantomjsdriver.version>
      <festassert.version>1.4</festassert.version>
      <junit.dep.version>4.11</junit.dep.version>
      <spring.test.version>3.2.2.RELEASE</spring.test.version>
      <logback.classic.version>1.0.9</logback.classic.version>
      <jetty.test.version>8.1.10.v20130312</jetty.test.version>
   </properties>

   <dependencies>
      <dependency>
         <groupId>com.github.dandelion</groupId>
         <artifactId>datatables-core</artifactId>
         <version>0.8.14</version>
      </dependency>

      <!-- Servlet -->
      <dependency>
         <groupId>javax.servlet</groupId>
         <artifactId>javax.servlet-api</artifactId>
      </dependency>

      <!-- Thymeleaf -->
      <dependency>
         <groupId>org.thymeleaf</groupId>
         <artifactId>thymeleaf</artifactId>
         <version>${thymeleaf.version}</version>
      </dependency>
      
      <!-- Logging -->
      <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
         <version>1.7.2</version>
      </dependency>
      <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>jcl-over-slf4j</artifactId>
         <version>1.6.4</version>
      </dependency>
      <dependency>
         <groupId>ch.qos.logback</groupId>
         <artifactId>logback-classic</artifactId>
         <version>1.0.9</version>
      </dependency>
      <dependency>
         <groupId>ch.qos.logback</groupId>
         <artifactId>logback-access</artifactId>
         <version>1.0.9</version>
      </dependency>

      <!-- Test -->
      <dependency>
         <groupId>com.github.dandelion</groupId>
         <artifactId>datatables-testing</artifactId>
         <version>0.8.14</version>
         <scope>test</scope>
      </dependency>
      <dependency>
         <groupId>org.thymeleaf</groupId>
         <artifactId>thymeleaf-spring3</artifactId>
         <version>${thymeleaf.version}</version>
         <scope>test</scope>
      </dependency>
   </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>