Removed jCenter(); formatted build.gradle
- Fixed #23 - Fixed whitespace in build.gradle
This commit is contained in:
parent
23b0af1731
commit
f350467942
12
build.gradle
12
build.gradle
@ -40,7 +40,6 @@ compileJava {
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
jcenter()
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Specify Windcorp Maven repository
|
* Specify Windcorp Maven repository
|
||||||
@ -173,13 +172,20 @@ compileJava.mustRunAfter addNativeDependencies // Make sure runtimeOnly has not
|
|||||||
task requestLinuxDependencies {
|
task requestLinuxDependencies {
|
||||||
description 'Adds linux, linux-arm64 and linux-arm32 native libraries to built artifacts.'
|
description 'Adds linux, linux-arm64 and linux-arm32 native libraries to built artifacts.'
|
||||||
doFirst {
|
doFirst {
|
||||||
project.ext.platforms.addAll(['natives-linux', 'natives-linux-arm64', 'natives-linux-arm32'])
|
project.ext.platforms.addAll([
|
||||||
|
'natives-linux',
|
||||||
|
'natives-linux-arm64',
|
||||||
|
'natives-linux-arm32'
|
||||||
|
])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
task requestWindowsDependencies {
|
task requestWindowsDependencies {
|
||||||
description 'Adds windows and windows-x86 native libraries to built artifacts.'
|
description 'Adds windows and windows-x86 native libraries to built artifacts.'
|
||||||
doFirst {
|
doFirst {
|
||||||
project.ext.platforms.addAll(['natives-windows', 'natives-windows-x86'])
|
project.ext.platforms.addAll([
|
||||||
|
'natives-windows',
|
||||||
|
'natives-windows-x86'
|
||||||
|
])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
task requestMacOSDependencies {
|
task requestMacOSDependencies {
|
||||||
|
Reference in New Issue
Block a user