Skip to content

Commit 290ec89

Browse files
author
王亮
committed
add icon
1 parent e6f4e75 commit 290ec89

File tree

3 files changed

+47
-0
lines changed

3 files changed

+47
-0
lines changed

leaf-demo/pom.xml

+19
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,25 @@
3434

3535
<build>
3636
<plugins>
37+
38+
<plugin>
39+
<groupId>org.apache.maven.plugins</groupId>
40+
<artifactId>maven-deploy-plugin</artifactId>
41+
<version>2.8.2</version>
42+
<configuration>
43+
<skip>true</skip>
44+
</configuration>
45+
</plugin>
46+
47+
<plugin>
48+
<groupId>org.apache.maven.plugins</groupId>
49+
<artifactId>maven-surefire-plugin</artifactId>
50+
<version>2.5</version>
51+
<configuration>
52+
<skipTests>true</skipTests>
53+
</configuration>
54+
</plugin>
55+
3756
<plugin>
3857
<groupId>org.springframework.boot</groupId>
3958
<artifactId>spring-boot-maven-plugin</artifactId>

leaf-server/pom.xml

+25
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@
2222

2323
<dependencies>
2424

25+
<!-- https://www.wake-up-neo.com/zh/java/jdk8-%E5%B0%9D%E8%AF%95%E4%BD%BF%E7%94%A8maven-javadoc%E6%8F%92%E4%BB%B6%E7%94%9F%E6%88%90javadoc%E6%97%B6%E5%87%BA%E7%8E%B0%E9%94%99%E8%AF%AF%E6%89%BE%E4%B8%8D%E5%88%B0javaxinterceptorinterceptorbinding%E7%9A%84%E7%B1%BB%E6%96%87%E4%BB%B6%E2%80%9D/1049958094/ -->
26+
<dependency>
27+
<groupId>javax.interceptor</groupId>
28+
<artifactId>javax.interceptor-api</artifactId>
29+
<version>1.2</version>
30+
</dependency>
31+
2532
<dependency>
2633
<groupId>commons-io</groupId>
2734
<artifactId>commons-io</artifactId>
@@ -74,6 +81,24 @@
7481

7582
<build>
7683
<plugins>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-deploy-plugin</artifactId>
87+
<version>2.8.2</version>
88+
<configuration>
89+
<skip>true</skip>
90+
</configuration>
91+
</plugin>
92+
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-surefire-plugin</artifactId>
96+
<version>2.5</version>
97+
<configuration>
98+
<skipTests>true</skipTests>
99+
</configuration>
100+
</plugin>
101+
77102
<plugin>
78103
<groupId>org.springframework.boot</groupId>
79104
<artifactId>spring-boot-maven-plugin</artifactId>

readme.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
[![Build Status](https://app.travis-ci.com/codingapi/springboot-starter-leaf.svg?branch=main)](https://app.travis-ci.com/codingapi/springboot-starter-leaf)
2+
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/codingapi/springboot-starter-leaf/blob/main/LICENSE)
3+
[![Maven Central](https://img.shields.io/maven-central/v/com.codingapi.leaf/springboot-starter-leaf.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.codingapi.leaf%22%20AND%20a:%22springboot-starter-leaf%22)
4+
25
# springboot-starter-leaf
36

47
```xml

0 commit comments

Comments
 (0)