1 Star 0 Fork 228

ssdutliuhaibo / spring-lhbauth

forked from LLHaibao / spring-lhbauth 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.08 KB
一键复制 编辑 原始数据 按行查看 历史
lvhaibao 提交于 2019-01-02 10:25 . 修改文件
<?xml version="1.0" encoding="UTF-8"?>
<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.lhb</groupId>
<artifactId>spring-lhbauth</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<modules>
<module>spring-lhbauth-jwt</module>
</modules>
<!--声明变量-->
<properties>
<spring-lhbauth-version>1.0.0</spring-lhbauth-version>
</properties>
<dependencies>
<!--可方便打印日志和getter和setter-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<!--阿里巴巴json的插件-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.41</version>
</dependency>
<!--&lt;!&ndash;test&ndash;&gt;-->
<!--<dependency>-->
<!--<groupId>org.springframework.boot</groupId>-->
<!--<artifactId>spring-boot-starter-test</artifactId>-->
<!--</dependency>-->
<!--工具包-->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!--保证各版本兼容, spring boot1.5.13-->
<dependency>
<groupId>io.spring.platform</groupId>
<artifactId>platform-bom</artifactId>
<version>Brussels-SR10</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!--引用spring-cloud-dependencies,会把所有的关于spring的jar版本引入-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Edgware.SR3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<!--构建build插件,该插件使得可以导出成jar包-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/liuhaibo/spring-lhbauth.git
git@gitee.com:liuhaibo/spring-lhbauth.git
liuhaibo
spring-lhbauth
spring-lhbauth
master

搜索帮助