Giter Club home page Giter Club logo

Comments (3)

tkrullmann avatar tkrullmann commented on August 11, 2024 1

Nice! It looks like you're using the distribution plugin and its distZip task.
distZip is also an archive task, so you can also refer to the archive that's being built from the archivePath property:

processIntegrationTestResources {
    from zipTree(distZip.archivePath) {
        into 'myArchive'
    }
}

That way you don't have to repeat the logic of how the zip file name is assembled.

You should probably also add a dependsOn distZip to make sure the tasks are run in the correct order.

from gradle-testsets-plugin.

tkrullmann avatar tkrullmann commented on August 11, 2024

Hi,
yes that's quite a general Gradle question :-)
I suppose you would like to have your main JAR file as a classpath resource for the integration test.

Most straightforward way is to copy the JAR to the integrationTest resources output folder, and probably rename it because you want to have a fixed filename when referring to it.

task copyMainJarToIntegrationTestResources(type: Copy) {
    from jar
    into sourceSets.integrationTest.resources.outputDir
    rename { "${jar.baseName}.jar" }
}

Then your integrationTest task should depend on this copy operation:

integrationTest.dependsOn copyMainJarToIntegrationTestResources

Hope that helps.

from gradle-testsets-plugin.

amimas avatar amimas commented on August 11, 2024

Thanks. I managed to solve it slightly differently but the idea is same.

Gradle already has a task tied to each sourcesets called process<sourceset-name>Resources. So, in my example in this thread, Gradle adds a task named processIntegrationTestResources. This task automatically copies files from src/integrationTest/resources to build/resources/integrationTest.

So, I added my build artifact that needs to be included in the resource (build/resources/integrationTest) like this:

processIntegrationTestResources {
    from (zipTree (file("$buildDir/distributions/${project.name}-${version}.zip"))) {
        //Unzips this build artifact into the resource's subdirectory named 'myArchive' relative to resource directory
        into "myArchive"
    }
}

Ideally I'd like to change the from... line to be something like this so that I don't have to specify the artifact location, but haven't been able to get that to work yet.

from (myArchiveTask.outputs)

from gradle-testsets-plugin.

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.