datatables4j-servlet2
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.datatables4j</groupId> <artifactId>datatables4j-servlet2</artifactId> <version>0.1.2</version> </dependency>
<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.datatables4j</groupId> <artifactId>datatables4j-parent</artifactId> <version>0.8.3</version> </parent> <artifactId>datatables4j-servlet2</artifactId> <version>0.1.2</version> <packaging>jar</packaging> <name>DataTables4j :: Module :: Backward/Servlet 2.x</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <datatables4j.version>0.8.3-SNAPSHOT</datatables4j.version> <servlet.version>2.5</servlet.version> <slf4j.version>1.6.4</slf4j.version> </properties> <dependencies> <dependency> <groupId>com.github.datatables4j</groupId> <artifactId>datatables4j-core-base</artifactId> <version>0.8.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>${servlet.version}</version> <optional>true</optional> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>compile</scope> <optional>true</optional> </dependency> </dependencies> </project>