You can download thymeleaf-extras-shiro-2.0.0.jar in this page.
The Apache Software License, Version 2.0
thymeleaf-extras-shiro-2.0.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.github.theborakompanioni/thymeleaf-extras-shiro/pom.properties META-INF/maven/com.github.theborakompanioni/thymeleaf-extras-shiro/pom.xml at.pollux.thymeleaf.shiro.dialect.ShiroDialect.class at.pollux.thymeleaf.shiro.processor.ShiroFacade.class at.pollux.thymeleaf.shiro.processor.ThymeleafFacade.class at.pollux.thymeleaf.shiro.processor.attribute.AuthenticatedAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.GuestAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.HasAllPermissionsAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.HasAllRolesAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.HasAnyPermissionsAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.HasAnyRolesAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.HasPermissionAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.HasRoleAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.LacksPermissionAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.LacksRoleAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.NotAuthenticatedAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.PrincipalAttrProcessor.class at.pollux.thymeleaf.shiro.processor.attribute.UserAttrProcessor.class at.pollux.thymeleaf.shiro.processor.element.AuthenticatedElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.GuestElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.HasAllPermissionsElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.HasAllRolesElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.HasAnyPermissionsElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.HasAnyRolesElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.HasPermissionElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.HasRoleElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.LacksPermissionElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.LacksRoleElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.NotAuthenticatedElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.PrincipalElementProcessor.class at.pollux.thymeleaf.shiro.processor.element.UserElementProcessor.class at/pollux/thymeleaf/shiro/Shiro-Dialect.xml
thymeleaf-extras-shiro-2.0.0.pom file content.
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Licensed to the Apache Software Foundation (ASF) under one ~ or more contributor license agreements. See the NOTICE file ~ distributed with this work for additional information ~ regarding copyright ownership. The ASF licenses this file ~ to you under the Apache License, Version 2.0 (the ~ "License"); you may not use this file except in compliance ~ with the License. You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. --> <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>com.github.theborakompanioni</groupId> <artifactId>thymeleaf-extras-shiro</artifactId> <version>2.0.0</version> <packaging>jar</packaging> <name>thymeleaf-extras-shiro</name> <description>Shiro taglib integration for Thymeleaf</description> <url>https://github.com/theborakompanioni/thymeleaf-extras-shiro</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <url>git@github.com:theborakompanioni/thymeleaf-extras-shiro.git</url> <connection>git@github.com:theborakompanioni/thymeleaf-extras-shiro.git</connection> <developerConnection>git@github.com:theborakompanioni/thymeleaf-extras-shiro.git</developerConnection> </scm> <developers> <developer> <id>theborakompanioni</id> <name>theborakompanioni</name> <email>theborakompanioni@gmail.com</email> </developer> <developer> <id>artgramlich</id> <name>Art Gramlich</name> <email>gramlich@gmail.com</email> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <thymeleaf.version>3.0.2.RELEASE</thymeleaf.version> <shiro.version>1.3.2</shiro.version> <slf4j.version>1.7.21</slf4j.version> <junit.version>4.12</junit.version> <easymock.version>3.4</easymock.version> <hamcrest.version>1.3</hamcrest.version> <JUnitParams.version>1.0.4</JUnitParams.version> <guava.version>19.0</guava.version> </properties> <dependencies> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>${shiro.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf</artifactId> <version>${thymeleaf.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>${easymock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>pl.pragmatists</groupId> <artifactId>JUnitParams</artifactId> <version>${JUnitParams.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>${shiro.version}</version> <classifier>tests</classifier> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.5</source> <target>1.5</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.5</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.7</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.5</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>Sonatype Nexus Snapshots</name> <url>http://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </project>
<dependency> <groupId>com.github.theborakompanioni</groupId> <artifactId>thymeleaf-extras-shiro</artifactId> <version>2.0.0</version> </dependency>
If you think the following thymeleaf-extras-shiro-2.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download thymeleaf-extras-shiro-2.0.0.jar file