devsoap / ds-gradle-vaadin

Gradle plugin for building Vaadin Flow 10/11/12/13/14/15 apps
https://devsoap.com/gradle-vaadin-flow-plugin
Other
36 stars 13 forks source link

Include project dependencies when unpacking webjars #202

Closed brp-oskar closed 5 years ago

brp-oskar commented 5 years ago

Is your feature request related to a problem? Please describe. We would like to include project dependencies when unpacking webjars. Currently project dependencies are excluded in WebJarHelper.groovy.

Our build.gradle looks like this:

dependencies {
    // Contains templates in folder "src/main/resources/META-INF/resources/frontend/templates"
    compile project(':base')
    // Webjar for a client side component
    compile project(path: ":webcomponent", configuration: "calendarWebjar")
}

Describe the solution you'd like Either remove the exclude or add a property that enables/disables the exclude.

Describe alternatives you've considered I have tested a build with and without the exclude of project dependencies. I didn't see any side effects with my project setup. Do you know why the exclude is there?

tohkawaics commented 5 years ago

We need this feature too.