File tree Expand file tree Collapse file tree
debugTools/x-ScriptEngineTool
developTools/x-AsciiPicTool
xJavaFxTool/src/main/java/com/xwintop/xJavaFxTool/services/index Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11dependencies {
22 api project(' :xcore' )
3- implementation ' org.apache.groovy:groovy-all:4.0.18'
4-
5- implementation ' org.python:jython:2.5.3'
6- implementation ' org.luaj:luaj-jse:3.0.1'
3+ api ' org.apache.groovy:groovy-all:4.0.21'
4+ api ' org.python:jython:2.5.3'
5+ api ' org.luaj:luaj-jse:3.0.1'
76}
87
98group = ' com.xwintop'
@@ -12,7 +11,10 @@ description = 'x-ScriptEngineTool'
1211
1312// 打jar包需要包含依赖的配置
1413jar {
15- from { configurations. compileClasspath. findAll { it. name. contains(" groovy" )
16- || it. name. contains(" luaj-jse" )
14+ duplicatesStrategy = ' exclude'
15+ from { configurations. compileClasspath. findAll {
16+ it. name. contains(" groovy" )
17+ || it. name. contains(" jython" )
18+ || it. name. contains(" luaj-jse" )
1719 }. collect { zipTree(it) } }
1820}
Original file line number Diff line number Diff line change @@ -11,7 +11,9 @@ description = 'x-AsciiPicTool'
1111
1212// 打jar包需要包含依赖的配置
1313jar {
14- from { configurations. compileClasspath. findAll { it. name. contains(" thumbnailator" )
14+ duplicatesStrategy = ' exclude'
15+ from { configurations. compileClasspath. findAll {
16+ it. name. contains(" thumbnailator" )
1517 || it. name. contains(" poi" )
1618 || it. name. contains(" commons-imaging" )
1719 }. collect { zipTree(it) } }
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ description = 'x-ExcelSplitTool'
1010
1111// 打jar包需要包含依赖的配置
1212jar {
13+ duplicatesStrategy = ' exclude'
1314 from { configurations. compileClasspath. findAll { it. name. contains(" poi" )
1415 || it. name. contains(" commons-csv" )}. collect { zipTree(it) } }
1516}
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ description = 'x-FileMergeTool'
1010
1111// 打jar包需要包含依赖的配置
1212jar {
13+ duplicatesStrategy = ' exclude'
1314 from { configurations. compileClasspath. findAll { it. name. contains(" poi" )
1415 || it. name. contains(" commons-csv" )}. collect { zipTree(it) } }
1516}
Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ description = 'x-FileSearchTool'
1010
1111// 打jar包需要包含依赖的配置
1212jar {
13+ duplicatesStrategy = ' exclude'
1314 from { configurations. compileClasspath. findAll { it. name. contains(" lucene" )}. collect { zipTree(it) } }
1415}
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ description = 'x-ImageTool'
2121
2222// 打jar包需要包含依赖的配置
2323jar {
24+ duplicatesStrategy = ' exclude'
2425 from { configurations. compileClasspath. findAll { it. name. contains(" thumbnailator" )
2526 || it. name. contains(" imageio" )}. collect { zipTree(it) } }
2627}
Original file line number Diff line number Diff line change @@ -10,5 +10,6 @@ description = 'x-JavaService'
1010
1111// 打jar包需要包含依赖的配置
1212jar {
13+ duplicatesStrategy = ' exclude'
1314 from { configurations. compileClasspath. findAll { it. name. contains(" lucene" )}. collect { zipTree(it) } }
1415}
Original file line number Diff line number Diff line change 4040@ Setter
4141@ Slf4j
4242public class PluginManageService {
43- public static final String SERVER_PLUGINS_URL = "https ://xwintop.gitee.io/maven/plugin-libs /plugin-list.json" ;
43+ public static final String SERVER_PLUGINS_URL = "http ://qiniu. xwintop.com/xJavaFxTool /plugin-list.json" ;
4444
4545 private PluginManageController pluginManageController ;
4646
You can’t perform that action at this time.
0 commit comments