Hi, I am starting with gradle and trying to write ...
# community-support
r
Hi, I am starting with gradle and trying to write build.gradle file to get mysql binary. Now, mysql allows linux binary download only in tar.xz format whereas most examples that I saw are using tar.gz format. Do build.gradle be able to support tar.xz in place of tar.gz ? Following is my build.gradle as of now.
Copy code
task thirdParty(type: Copy) {
  into("$projectDir/third-party")
  from(jFrog("com.mysql:mysql:${binaryVersions.getProperty("mysql_binary_version")}:x86_64@tar.gz")) { into("mysqld/dist") }
}
p
The copy task/dependency resolution does not care about the file ending.