1 Star 0 Fork 14

Kimipoker/spring-boot-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 3.11 KB
一键复制 编辑 原始数据 按行查看 历史
Cent.Chen 提交于 2019-07-14 12:43 . 新增日期格式化示例代码
<?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">
<parent>
<artifactId>spring-boot-starter-parent</artifactId>
<groupId>org.springframework.boot</groupId>
<version>2.1.2.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.cent</groupId>
<artifactId>spring-boot-examples</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>spring-boot-examples-simple</module>
<module>spring-boot-examples-properties</module>
<module>spring-boot-examples-runner</module>
<module>spring-boot-examples-admin-server</module>
<module>spring-boot-examples-admin-client</module>
<module>spring-boot-examples-mqtt-producer</module>
<module>spring-boot-examples-mqtt-consumer</module>
<module>spring-boot-examples-intercept</module>
<module>spring-boot-examples-webflux</module>
<module>spring-boot-examples-dateformat</module>
</modules>
<properties>
<spring.boot.version>2.1.2.RELEASE</spring.boot.version>
<lombok.version>1.18.2</lombok.version>
<fastjson.version>1.2.54</fastjson.version>
<spring.boot.admin.version>2.1.2</spring.boot.admin.version>
<mqttv3.version>1.2.0</mqttv3.version>
<lombok.version>1.18.6</lombok.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-server</artifactId>
<version>${spring.boot.admin.version}</version>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version>${spring.boot.admin.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>${fastjson.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.paho</groupId>
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
<version>${mqttv3.version}</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.projectlombok/lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.6</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Kimipoker/spring-boot-examples.git
git@gitee.com:Kimipoker/spring-boot-examples.git
Kimipoker
spring-boot-examples
spring-boot-examples
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385