Setting quiet loglevel with gradle.properties has no effect
Hi. I’m attempting to set the loglevel to quiet (the same as supplying the “-q” or “–quiet” args) via gradle.properties, but it doesn’t appear to be working as expected: $ cat gradle.properties...
View ArticleGradle not satisfied with anything
I don’t think it’s an issue with trust. It’s just helpful to get as much information as possible when debugging. There is another thing that gets built with this gradle wraper directly after the...
View ArticleGradle - configure subprojects based on plugin presence
@sterling do you have a recommended pattern for conditional plugin applications while still using withPlugin()? We have a use case where we have one configuration we want to run for, say, android...
View ArticleJacoco global default thresholds / local modifications setup
Hey Thibault, I’m aware that this is a old topic, but we’re currently facing the same problem and it seems that there is nothin new “build in”, so we build our own solution that I’d like to share....
View ArticleHow to force TLS version?
I don’t actually know how to do that, but I would assume Gradle just uses the default security provider in Java for creating HTTPS connections. So you should be able to both enforce TLS 1.3 and...
View ArticleSpecify the order when a task depends on 2 other tasks
I’ve searched for a solution but could not really find an answer that would fit my needs. I have a project that is split into 4 subprojects like so main project – backend – frontend – shared code –...
View ArticleDependency Resolution Fails in Gradle 6
Hi @xpress495, If the dependencies are required transitively at compile time, you need to declare them as api instead of implementation. See also: Recognizing API and implementation dependencies. Make...
View ArticleSpecify the order when a task depends on 2 other tasks
Hi @Shuyinsama, It is generally the better approach to declare dependencies between projects instead of dependencies between tasks. E.g.: backend.gradle dependencies { implementation...
View ArticleGradle Jar It hasn't found the main class
Hi @ggeliso, I am not sure what the concrete problem is, but here are some pointers that should help you: Consider using the application instead of the plain java plugin. Then Gradle will do all the...
View ArticleSpecify the order when a task depends on 2 other tasks
Hi @jendrik thank you for taking the time to reply and explain some things. I do have those implementations along with a bunch of project dependencies like spring-boot etc. dependencies {...
View ArticleGit repository at did not contain a project publishing the specified dependency
Hi @twof! Welcome to the Gradle community. Unfortunately, the project (swagger) you are depending on is built with Maven. Source dependencies currently only work with projects that have a Gradle...
View ArticleGradle 6.0 fails to find dependencies in p2asmaven repository
Hi @liblit, You are running into this (breaking) change:...
View ArticleScans.gradle.com Platform Update
The free service scans.gradle.com will be down for extended maintenance starting at 5 pm PT on Wednesday, November 27. You can check the progress of this outage at...
View ArticleThe mrJar Plugin v0.0.13 has been released — Modular MRJAR Files Made Easy
Graou74: „…how to access with Gradle packages of modules not exported. I would like to violate JavaFx which lacks openness in places…“ Hi @Graou74 That sounds like an interesting problem. Please can...
View ArticleGet resolved artifacts from configuration and all configurations it extends from
Hi @abagshaw, The Configuration API is “historically grown” and used for different purposes now. What you do is fine for the case you describe. In Gradle core, the pattern we now use is to use...
View Article(UE4 Packaging Problem) Rungradle.bat" :app:assembleRelease
**HELLO THERE, ** got a problem with UE4 Android App packaging: UATHelper: Packaging (Android (Multi:ASTC,PVRTC,DXT,ATC,ETC2,ETC1)): :app:packageRelease FAILED UATHelper: Packaging (Android...
View ArticleGradle >= 5.x Nebula Dependency Recommender Custom Provider equivalent
The Nebula Dependency Recommender https://github.com/nebula-plugins/nebula-dependency-recommender-plugin has been deprecated, since "Much of the functionality of this project can be replicated by a...
View ArticleIs there any way to force the gradle daemon to stop at the end of some task?
Would be nice being able of communicate to the daemon from a task that can be stoped. Regards
View Article