Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<!-- Commons项目中用来处理Java基本对象方法的工具类包, 可以简化很多平时经常要用到的写法, 例如判断字符串是否为空等等 -->
<!-- For Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<!-- For Fastjson -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package pf4j.plugin.impl;


import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

import pf4j.plugin.api.annotation.PluginMapping;
import ro.fortsoft.pf4j.Plugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
<!-- Commons项目中用来处理Java基本对象方法的工具类包, 可以简化很多平时经常要用到的写法, 例如判断字符串是否为空等等 -->
<!-- For Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<!-- For Fastjson -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package pf4j.plugin.impl;


import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;

import pf4j.plugin.api.annotation.PluginMapping;
import ro.fortsoft.pf4j.Plugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
<!-- Commons项目中用来处理Java基本对象方法的工具类包, 可以简化很多平时经常要用到的写法, 例如判断字符串是否为空等等 -->
<!-- For Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<!-- ###################### Spring 4.x 核心框架 ###################### -->
Expand Down
8 changes: 4 additions & 4 deletions spring-boot-sample-pf4j/pf4j-plugin-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.12</junit.version>
<commons-io.version>2.5</commons-io.version>
<commons-lang.version>2.6</commons-lang.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
<fastjson.version>1.2.61</fastjson.version>
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
<ro.pf4j.version>1.3.0</ro.pf4j.version>
Expand Down Expand Up @@ -64,9 +64,9 @@
<!-- Commons项目中用来处理Java基本对象方法的工具类包, 可以简化很多平时经常要用到的写法, 例如判断字符串是否为空等等 -->
<!-- For Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang.version}</version>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>

<!-- Java Servlet API -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<!-- Commons项目中用来处理Java基本对象方法的工具类包, 可以简化很多平时经常要用到的写法, 例如判断字符串是否为空等等 -->
<!-- For Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<!-- For Fastjson -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package pf4j2.plugin.impl;


import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.pf4j.Plugin;
import org.pf4j.PluginWrapper;
import org.pf4j.RuntimeMode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<!-- Commons项目中用来处理Java基本对象方法的工具类包, 可以简化很多平时经常要用到的写法, 例如判断字符串是否为空等等 -->
<!-- For Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<!-- For Fastjson -->
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package pf4j2.plugin.impl;


import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang3.StringUtils;
import org.pf4j.Plugin;
import org.pf4j.PluginWrapper;
import org.pf4j.RuntimeMode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
<!-- Commons项目中用来处理Java基本对象方法的工具类包, 可以简化很多平时经常要用到的写法, 例如判断字符串是否为空等等 -->
<!-- For Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>

<!-- ###################### Spring 4.x 核心框架 ###################### -->
Expand Down
8 changes: 4 additions & 4 deletions spring-boot-sample-pf4j2/pf4j2-plugin-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>4.12</junit.version>
<commons-io.version>2.14.0</commons-io.version>
<commons-lang.version>2.6</commons-lang.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
<fastjson.version>1.2.61</fastjson.version>
<javax.servlet-api.version>3.1.0</javax.servlet-api.version>
<pf4j.version>3.14.1</pf4j.version>
Expand Down Expand Up @@ -64,9 +64,9 @@
<!-- Commons项目中用来处理Java基本对象方法的工具类包, 可以简化很多平时经常要用到的写法, 例如判断字符串是否为空等等 -->
<!-- For Commons Lang -->
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${commons-lang.version}</version>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>

<!-- Java Servlet API -->
Expand Down
Loading