File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 1- def getProp (name , defaultValue ) {
1+ def getProp (name ) {
22 String found = project. findProperty(name)
33 if (found == null ) {
4- logger. warn(' Can not find provided property "' + name + ' ", default value ' + defaultValue + ' in use' )
5- return defaultValue
4+ GradleException (' Property not found: ' + name)
65 } else {
76 return project. getProperty(name)
87 }
98}
109
11- def jbbpVersion = getProp(' jbbp_plugin_version' , ' 2.0.4 ' )
12- def metaLibVersion = getProp(' meta_lib_version' , ' 1.1.2 ' )
10+ def jbbpVersion = getProp(' jbbp_plugin_version' )
11+ def metaLibVersion = getProp(' meta_lib_version' )
1312
1413group = ' com.igormaznitsa'
1514version = jbbpVersion
@@ -25,8 +24,7 @@ dependencies {
2524 implementation gradleApi()
2625 implementation localGroovy()
2726
28- implementation ' commons-io:commons-io:2.11.0'
29-
27+ implementation ' commons-io:commons-io:2.13.0'
3028 implementation " com.igormaznitsa:meta-annotations:" + metaLibVersion
3129 implementation " com.igormaznitsa:meta-utils:" + metaLibVersion
3230
@@ -45,7 +43,7 @@ buildscript {
4543 }
4644 }
4745 dependencies {
48- classpath " com.gradle.publish:plugin-publish-plugin:1.0 .0"
46+ classpath " com.gradle.publish:plugin-publish-plugin:1.1 .0"
4947 }
5048}
5149
You can’t perform that action at this time.
0 commit comments