Code Monkey home page Code Monkey logo

Comments (6)

michel-kraemer avatar michel-kraemer commented on June 21, 2024

Yes, it does. Just use the following notation:

src file("src/gradleTest/relativeUrl/bundle.zip").toURI().toURL()

from gradle-download-task.

simonjhy avatar simonjhy commented on June 21, 2024

Can i just put "file:src/gradleTest/relativeUrl/bundle.zip" not use "src file("src/gradleTest/relativeUrl/bundle.zip").toURI().toURL()" this type? I want to pass the src as a string to download task, but it will throw "URI is not hierarchical"

from gradle-download-task.

michel-kraemer avatar michel-kraemer commented on June 21, 2024

You have to pass a valid URI to src. file:src/gradleTest/relativeUrl/bundle.zip is not a valid URI. File URIs always have to be absolute. That's just how URIs work. Correct me if I'm wrong but I don't think you can get around the file(...).toURI().toURL() call.

from gradle-download-task.

simonjhy avatar simonjhy commented on June 21, 2024

it can directly use "src/gradleTest/relativeUrl/bundle.zip" to set src url when we use older version gradle download task. When I tried to upgrade to 5.0.0, it always try to find this in "/home/simon/.gradle/daemon/6.9.2/src/gradleTest/relativeUrl/bundle.zip"

from gradle-download-task.

michel-kraemer avatar michel-kraemer commented on June 21, 2024

file() is a built-in function from Gradle. It's an alias of project.file(). It should return a File object that is relative to the project directory. Alternatively, you can use new File(projectDir, "src/gradleTest/relativeUrl/bundle.zip").toURI().toURL(). This should get you the same result.

from gradle-download-task.

michel-kraemer avatar michel-kraemer commented on June 21, 2024

If you haven't worked with files in Gradle yet, this page might help you:
https://docs.gradle.org/current/userguide/working_with_files.html

From that page: "The Project.file(java.lang.Object) method is used to create a file or directory path relative to the current project and is a common way to make build scripts work regardless of the project path."

from gradle-download-task.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.