1 Star 0 Fork 96

早起的睡熊/common-starter

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 6.57 KB
一键复制 编辑 原始数据 按行查看 历史
易水风萧 提交于 2019-12-02 18:59 +08:00 . fix bug
<?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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.6.RELEASE</version>
</parent>
<groupId>com.yishuifengxiao.common</groupId>
<artifactId>common-starter</artifactId>
<version>4.2.0</version>
<packaging>pom</packaging>
<name>common-starter</name>
<url>http://www.yishuifengxiao.com</url>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>yishuifengxiao</name>
<email>[email protected]</email>
<organization>yishuifengxiao</organization>
<organizationUrl>http://www.yishuifengxiao.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>
scm:git:https://gitee.com/zhiyubujian/common-starter.git
</connection>
<developerConnection>
scm:git:https://gitee.com/zhiyubujian/common-starter.git
</developerConnection>
<url>https://gitee.com/zhiyubujian/common-starter/tree/master</url>
<tag>v1.0.0</tag>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<modules>
<module>common-spring-boot-starter</module>
<module>common-spring-boot-autoconfigure</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring-social.version>1.1.6.RELEASE</spring-social.version>
<spring-security-oauth2-autoconfigure.version>2.1.6.RELEASE</spring-security-oauth2-autoconfigure.version>
<!-- mybatis -->
<mybatis-spring-boot-starter.version>2.0.1</mybatis-spring-boot-starter.version>
<mybatis-typehandlers-jsr310.version>1.0.2</mybatis-typehandlers-jsr310.version>
<pagehelper.version>1.2.12</pagehelper.version>
<tk.mybatis.version>2.1.5</tk.mybatis.version>
<druid.version>1.1.18</druid.version>
<!-- mybatis -->
<!-- swagger -->
<spring-admin.version>2.1.2</spring-admin.version>
<swagger2.version>2.9.2</swagger2.version>
<swagger.v3.version>1.5.22</swagger.v3.version>
<swagger-bootstrap-ui.version>1.9.4</swagger-bootstrap-ui.version>
<!-- swagger -->
<guava.version>23.0</guava.version>
<javax.interceptor-api.version>3.1</javax.interceptor-api.version>
<yishuifengxiao.tool.version>2.0.2</yishuifengxiao.tool.version>
<spring-cloud.version>Greenwich.RELEASE</spring-cloud.version>
</properties>
<profiles>
<profile>
<id>disable-javadoc-doclint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.opts>-Xdoclint:none</javadoc.opts>
</properties>
</profile>
<profile>
<!-- 本地开发环境 -->
<id>dev</id>
<properties>
<profiles.active>dev</profiles.active>
</properties>
<activation>
<!-- 设置默认激活这个配置 -->
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<!-- 发布环境 -->
<profile>
<id>release</id>
<properties>
<profiles.active>release</profiles.active>
</properties>
<activation>
<!-- 设置默认激活这个配置 -->
<activeByDefault>false</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</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-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<!-- 发布环境 -->
</profiles>
<description>易水公共组件是基于springboot的高度封装的通用型组件,在对spring security和spring security oauth2高度可定制化的功能封装外,还支持第三方登录和sso单点登录功能,使用户能够快速开启QQ登录和微信登录能力,搭建属于自己的认证/授权中心。此外,工具还提供各种常见的图形验证码、短信验证码和邮件验证码功能,并支持跨域设置和全局异常捕获功能,实现自定义异常信息提示。另外,组件还包含swagger接口文档功能,支持一键导出离线接口使用文档。最后,组件提供了大量丰富的配置属性,支持通过属性配置完成各项功能设置,真正实现零侵入、无缝接入功能</description>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/fan_sten/common-starter.git
[email protected]:fan_sten/common-starter.git
fan_sten
common-starter
common-starter
master

搜索帮助