jsets-shiro-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sidao</groupId> <artifactId>jsets-shiro-spring-boot-starter</artifactId> <version>1.0.4</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> <groupId>org.sidao</groupId> <artifactId>jsets-shiro-spring-boot-starter</artifactId> <version>1.0.4</version> <packaging>jar</packaging> <name>shiro-spring-Boot-starter</name> <description>一个用于集成shiro权限的Spring-starter</description> <url>https://github.com/wxcmyx/jsets-shiro-spring-boot-starter</url> <prerequisites> <maven>3.5.3</maven> </prerequisites> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <tag>1.0.4-SNAPSHOT</tag> <url>scm:git:git@github.com/wxcmyx/jsets-shiro-spring-boot-starter.git</url> <connection>scm:git:git@github.com/wxcmyx/jsets-shiro-spring-boot-starter.git</connection> <developerConnection>https://github.com/wxcmyx/jsets-shiro-spring-boot-starter</developerConnection> </scm> <developers> <developer> <name>xiaochao Wang</name> <email>44312782@qq.com</email> <organization>http://sidao.org</organization> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>1.8</java.version> <maven.maven-resources-plugin.version>2.6</maven.maven-resources-plugin.version> <spring-boot.version>2.0.3.RELEASE</spring-boot.version> <spring-data-redis.version>2.0.6.RELEASE</spring-data-redis.version> <shiro.version>1.4.0</shiro.version> <jjwt.version>0.9.1</jjwt.version> <jcaptcha.version>1.0</jcaptcha.version> <guava.version>24.1-jre</guava.version> </properties> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${spring-boot.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>${spring-data-redis.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>${shiro.version}</version> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-web</artifactId> <version>${shiro.version}</version> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>${shiro.version}</version> </dependency> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-ehcache</artifactId> <version>${shiro.version}</version> </dependency> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>${jjwt.version}</version> </dependency> <dependency> <groupId>com.octo.captcha</groupId> <artifactId>jcaptcha</artifactId> <version>1.0</version> <exclusions> <exclusion> <groupId>com.jhlabs</groupId> <artifactId>imaging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <tagNameFormat>${project.version}</tagNameFormat> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <source>${java.version}</source> <target>${java.version}</target> <showWarnings>true</showWarnings> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>${maven.maven-resources-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-scm-plugin</artifactId> <version>1.8.1</version> <configuration> <connectionType>connection</connectionType> </configuration> </plugin> </plugins> </build> </project>