You can download thymeleaf-spring-data-dialect-2.1.1.jar in this page.
Apache License, Version 2.0
thymeleaf-spring-data-dialect-2.1.1.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/io.github.jpenren/thymeleaf-spring-data-dialect/pom.properties META-INF/maven/io.github.jpenren/thymeleaf-spring-data-dialect/pom.xml META-INF/services/org.thymeleaf.dialect.springdata.decorator.PaginationDecorator org.thymeleaf.dialect.springdata.Keys.class org.thymeleaf.dialect.springdata.PageObjectAttrProcessor.class org.thymeleaf.dialect.springdata.PaginationAttrProcessor.class org.thymeleaf.dialect.springdata.PaginationQualifierAttrProcessor.class org.thymeleaf.dialect.springdata.PaginationSortAttrProcessor.class org.thymeleaf.dialect.springdata.PaginationSplitAttrProcessor.class org.thymeleaf.dialect.springdata.PaginationSummaryAttrProcessor.class org.thymeleaf.dialect.springdata.PaginationUrlAttrProcessor.class org.thymeleaf.dialect.springdata.SpringDataDialect.class org.thymeleaf.dialect.springdata.decorator.AbstractPagerDecorator.class org.thymeleaf.dialect.springdata.decorator.AlignedLinksDecorator.class org.thymeleaf.dialect.springdata.decorator.FullPaginationDecorator.class org.thymeleaf.dialect.springdata.decorator.PagerDecorator.class org.thymeleaf.dialect.springdata.decorator.PaginationDecorator.class org.thymeleaf.dialect.springdata.decorator.PaginationDecoratorRegistry.class org.thymeleaf.dialect.springdata.exception.InvalidObjectParameterException.class org.thymeleaf.dialect.springdata.exception.PaginationDecoratorNotFoundException.class org.thymeleaf.dialect.springdata.util.Messages.class org.thymeleaf.dialect.springdata.util.PageUtils.class org.thymeleaf.dialect.springdata.util.ProcessorUtils.class org.thymeleaf.dialect.springdata.util.Strings.class thymeleaf-spring-data-dialect/AlignedLinksDecorator.properties thymeleaf-spring-data-dialect/AlignedLinksDecorator_de.properties thymeleaf-spring-data-dialect/AlignedLinksDecorator_en.properties thymeleaf-spring-data-dialect/AlignedLinksDecorator_es.properties thymeleaf-spring-data-dialect/AlignedLinksDecorator_fr.properties thymeleaf-spring-data-dialect/AlignedLinksDecorator_gl_ES.properties thymeleaf-spring-data-dialect/AlignedLinksDecorator_it.properties thymeleaf-spring-data-dialect/AlignedLinksDecorator_pt.properties thymeleaf-spring-data-dialect/FullPaginationDecorator.properties thymeleaf-spring-data-dialect/FullPaginationDecorator_de.properties thymeleaf-spring-data-dialect/FullPaginationDecorator_en.properties thymeleaf-spring-data-dialect/FullPaginationDecorator_es.properties thymeleaf-spring-data-dialect/FullPaginationDecorator_fr.properties thymeleaf-spring-data-dialect/FullPaginationDecorator_gl_ES.properties thymeleaf-spring-data-dialect/FullPaginationDecorator_it.properties thymeleaf-spring-data-dialect/FullPaginationDecorator_pt.properties thymeleaf-spring-data-dialect/PagerDecorator.properties thymeleaf-spring-data-dialect/PagerDecorator_de.properties thymeleaf-spring-data-dialect/PagerDecorator_en.properties thymeleaf-spring-data-dialect/PagerDecorator_es.properties thymeleaf-spring-data-dialect/PagerDecorator_fr.properties thymeleaf-spring-data-dialect/PagerDecorator_gl_ES.properties thymeleaf-spring-data-dialect/PagerDecorator_it.properties thymeleaf-spring-data-dialect/PagerDecorator_pt.properties thymeleaf-spring-data-dialect/PaginationSummary.properties thymeleaf-spring-data-dialect/PaginationSummary_de.properties thymeleaf-spring-data-dialect/PaginationSummary_en.properties thymeleaf-spring-data-dialect/PaginationSummary_es.properties thymeleaf-spring-data-dialect/PaginationSummary_fr.properties thymeleaf-spring-data-dialect/PaginationSummary_gl_ES.properties thymeleaf-spring-data-dialect/PaginationSummary_it.properties thymeleaf-spring-data-dialect/PaginationSummary_pt.properties
thymeleaf-spring-data-dialect-2.1.1.pom file content.
<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> <groupId>io.github.jpenren</groupId> <artifactId>thymeleaf-spring-data-dialect</artifactId> <version>2.1.1</version> <name>Thymeleaf Spring Data Dialect</name> <description>Data pagination made easy with Thymeleaf and Spring Data</description> <url>http://github.com/jpenren/thymeleaf-spring-data-dialect</url> <inceptionYear>2016</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Javier Pena</name> <email>javiprendo@gmail.com</email> <organizationUrl>https://github.com/jpenren</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git://github.com/jpenren/thymeleaf-spring-data-dialect.git</connection> <developerConnection>scm:git:git@github.com:jpenren/thymeleaf-spring-data-dialect.git</developerConnection> <url>git@github.com:jpenren/thymeleaf-spring-data-dialect.git</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.6</source> <target>1.6</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-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>1.10.2.RELEASE</version> </dependency> <dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf</artifactId> <version>2.1.4.RELEASE</version> </dependency> </dependencies> </project>
<dependency> <groupId>io.github.jpenren</groupId> <artifactId>thymeleaf-spring-data-dialect</artifactId> <version>2.1.1</version> </dependency>
If you think the following thymeleaf-spring-data-dialect-2.1.1.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download thymeleaf-spring-data-dialect-2.1.1.jar file