Skip to content

Commit

Permalink
🎨 #1631 SDK最低支持版本设置为JDK8,放弃对JDK7及更旧版本的支持
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Aug 16, 2020
1 parent 8b7ca9b commit 9145628
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@
</modules>

<properties>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<httpclient.version>4.5</httpclient.version>
Expand All @@ -131,11 +131,10 @@
<artifactId>qrcode-utils</artifactId>
<version>1.1</version>
</dependency>
<!-- 由于jodd-http较新的3.8版本需要jdk8,故而此处采用较低版本 -->
<dependency>
<groupId>org.jodd</groupId>
<artifactId>jodd-http</artifactId>
<version>5.1.4</version>
<version>5.1.6</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 9145628

Please sign in to comment.