1 Star 0 Fork 40

safran/jecloud-auth

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.47 KB
一键复制 编辑 原始数据 按行查看 历史
辉gg 提交于 2023-08-18 13:43 . feat(version): release v2.0.4
<?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.je.auth</groupId>
<artifactId>jecloud-auth</artifactId>
<packaging>pom</packaging>
<version>2.0.4</version>
<name>jecloud-auth</name>
<url>http://www.jepaas.com</url>
<modules>
<module>jecloud-auth-core</module>
<module>jecloud-auth-third-login</module>
<module>jecloud-auth-third-app</module>
<module>jecloud-auth-plugin</module>
<module>jecloud-auth-starter</module>
<module>jecloud-auth-test</module>
<module>jecloud-auth-check</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<springboot.version>2.3.4.RELEASE</springboot.version>
<spring.version>5.2.9.RELEASE</spring.version>
<jecloud.common.version>2.0.4</jecloud.common.version>
<fastJson.version>2.0.23</fastJson.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${springboot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>${springboot.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
<repository>
<id>jestq-releases</id>
<url>http://maven.jepaas.com/repository/maven-releases/</url>
</repository>
<snapshotRepository>
<id>jestq-snapshots</id>
<url>http://maven.jepaas.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<attach>true</attach>
</configuration>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>remove</goal>
<goal>format</goal>
</goals>
</execution>
</executions>
<configuration>
<quiet>true</quiet>
<header>LICENSE</header>
<excludes>
<exclude>**/*.properties</exclude>
<exclude>*.sh</exclude>
<exclude>*.yml</exclude>
<exclude>.editorconfig</exclude>
<exclude>.gitignore</exclude>
<exclude>**/*.md</exclude>
<exclude>**/*.xml</exclude>
</excludes>
<strictCheck>true</strictCheck>
<mapping>
<java>SLASHSTAR_STYLE</java>
</mapping>
</configuration>
</plugin>
</plugins>
</build>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/safranyu/jecloud-auth.git
git@gitee.com:safranyu/jecloud-auth.git
safranyu
jecloud-auth
jecloud-auth
master

搜索帮助