Git Product home page Git Product logo

Comments (8)

hierynomus avatar hierynomus commented on June 14, 2024

Sergio,

There isn't explicit support for it, but is it needed? Have you tried:

subprojects {
    apply plugin: 'license'
}

license {
    header rootProject.file('LICENSE')
}

Can you tell me whether that works?

from license-gradle-plugin.

hierynomus avatar hierynomus commented on June 14, 2024

Sergio,

I think you just deleted you comment and reopened the issue. What I got was that:

allprojects {
    apply plugin: 'license'
}

works for you, correct? In that case is the issue resolved?

from license-gradle-plugin.

wikier avatar wikier commented on June 14, 2024

No, I doesn't :-/

In the root project I have:

license {
    header rootProject.file("HEADER")
}

But in the subproject I think the pluing is not using such setting, but the default ones, because it fails with:

FAILURE: Build failed with an exception.
* What went wrong:
A problem was found with the configuration of task ':foo-sub1:licenseTest'.
> File '/home/sergio/projects/foo/foo-sub1/LICENSE' specified for property 'header' does not exist.

Any idea? Obviously I don want to setup the plugin manually in all subprojects.

from license-gradle-plugin.

hierynomus avatar hierynomus commented on June 14, 2024

You can do this:

allprojects {
    apply plugin: 'license'
    license {
        header rootProject.file("HEADER")
    }
}

Then the configuration gets injected into every project.

from license-gradle-plugin.

wikier avatar wikier commented on June 14, 2024

Perfect! That works. Thanks!

from license-gradle-plugin.

hierynomus avatar hierynomus commented on June 14, 2024

No Problem! Let me know if there are any other problems.

from license-gradle-plugin.

raju12 avatar raju12 commented on June 14, 2024

allprojects {
apply plugin: 'license'
license {
header rootProject.file("HEADER")
}
}
I used but not testing header exist in the sourceset s,
and I tried using
tasks.withType(License).each { licenseTask ->

licenseTask.include '**'
} but unable add header in files which header is missing?

please help me....

from license-gradle-plugin.

hierynomus avatar hierynomus commented on June 14, 2024

Raju, please open a new issue, and describe what you're trying to achieve and what is not working. And use correct markup so that the code blocks are formatted for readability.

from license-gradle-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.