|
|
@ -29,8 +29,11 @@ static def isWindows() { |
|
|
|
return org.gradle.internal.os.OperatingSystem.current().isWindows() |
|
|
|
return org.gradle.internal.os.OperatingSystem.current().isWindows() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
allprojects { |
|
|
|
implementation files("${System.getProperty('java.home')}/../lib/tools.jar") |
|
|
|
|
|
|
|
|
|
|
|
apply plugin: 'java' |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
implementation 'com.fr.third:fine-third:' + fineVersion |
|
|
|
implementation 'com.fr.third:fine-third:' + fineVersion |
|
|
|
implementation 'com.fr.activator:fine-activator:' + fineVersion |
|
|
|
implementation 'com.fr.activator:fine-activator:' + fineVersion |
|
|
|
implementation 'com.fr.core:fine-core:' + fineVersion |
|
|
|
implementation 'com.fr.core:fine-core:' + fineVersion |
|
|
@ -57,5 +60,11 @@ dependencies { |
|
|
|
implementation 'org.slf4j:slf4j-simple:1.7.30' |
|
|
|
implementation 'org.slf4j:slf4j-simple:1.7.30' |
|
|
|
testImplementation 'junit:junit:4.12' |
|
|
|
testImplementation 'junit:junit:4.12' |
|
|
|
testImplementation 'org.easymock:easymock:3.5.1' |
|
|
|
testImplementation 'org.easymock:easymock:3.5.1' |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dependencies { |
|
|
|
|
|
|
|
implementation files("${System.getProperty('java.home')}/../lib/tools.jar") |
|
|
|
} |
|
|
|
} |
|
|
|
sourceCompatibility = '1.8' |
|
|
|
sourceCompatibility = '1.8' |
|
|
|