Disable Gradle metadata resolution
I’m having an issue with using Gradle against a Maven Artifactory repository. When I try to fetch dependencies through an Artifactory virtual repository, Gradle tries to fetch module metadata as...
View ArticleThe best place to create plugin configuration
Hi. Adjusting to deprecation warnings in Gradle 6+ I’m moving the configuration for my gradle-pitest-plugin from the root project to a project it is applied. In general it is not a problem, but I have...
View ArticleConfigure buildSrc cache directory (not project cache directory)
Hey Gradle community! It is fairly easy to change the project cache directory with the --project-cache-dir command line switch, but I am trying to update the cache directory for buildSrc. This is...
View ArticleAspectj.gradle apply plugin error
Hello everyone: I’m new to gradle world. I have a java service that is not spring based. I’m trying to introduce aspect to it. I followed the instruction from here:...
View ArticleProperties for initscript block
Ok so this works as long as the properties are loaded inside the initscript closure. What about loading properties globally for all of the init.gradle file? I tried this but it does not work:...
View ArticleFailed to find GeneratedAppGlideModule
Hi everyone I am have problem I am dev flutter_plugin_playlist: ^0.1.5 for android on Android Studio 3.6.1 Widget flutter_plugin_playlist: ^0.1.5 Link:...
View ArticleGradle sync failed while creating a project
I am also getting same error waiting for solution
View ArticleRunning integration tests in parallel
I have a project which has more than 10-15 modules. I have split the tests in a way such that the unit tests are run separately and the integration tests are run separately. The unit tests can be...
View ArticleThe best place to create plugin configuration
[1] buildscript is only meant for dependencies that are to be on the plugin classpath itself. [2] If I understand it correctly you want all cases of where the java plugin is applied that the pitest...
View ArticleLinks for source repositories provided in the Gradle documentation
This is actually a good idea. For non-bundled plugins the links can be found on the plugin portal(*), but it could be useful in the core docs to have references to where to the various Gradle...
View ArticleHow to get full list of dependencies and their meta?
Hello, I’m trying to manage dependencies in a project built with Gradle using Nix in order to make our build process more unified and fully deterministic. Nix is a package manager for Unix systems...
View ArticleHow to get full list of dependencies and their meta?
I might add that gradle app:dependencies doesn’t give a full list. And I’ve also tried what was suggested in another thread here: tasks.register("getDependencies") { doLast { println...
View ArticleLinks for source repositories provided in the Gradle documentation
@Schalk_Cronje Thank you – where can I find the issue tracker for Build Dashboard?
View ArticleNeed help with building an executable jar that can be published to maven...
Need help with building an executable jar (that can be run with java -jar app.jar) that can be published to maven local repo (using gradle publishToMavenLocal) for a spring boot project. With these...
View ArticleNeed help with building an executable jar that can be published to maven...
Figured out the fix, artifact needed to be defined in the the publications scope. publishing { publications { create<MavenPublication>("mavenJava") { //from(components["java"]) // <-- this is...
View ArticleConfigure buildSrc cache directory (not project cache directory)
I have the same question as Ted Smith.
View ArticleLinks for source repositories provided in the Gradle documentation
It seems to be the one at https://github.com/gradle/gradle/issues
View ArticleLinks for source repositories provided in the Gradle documentation
Thanks! I mistakenly thought it would have a separate issue tracker (ala Maven). I’ll post there.
View ArticleFAILURE: Build failed with an exception flutter_image_compress
Hey Trying to use flutter_image_compress package in my Flutter app. Keep getting this issue when build: FAILURE: Build failed with an exception. What went wrong: A problem occurred configuring project...
View ArticleBuilding Latex documents?
Do anyone have experience building Latex documents with Gradle? Background: I am working with a codebase using GNU Make and we want a new build system. We build all kinds of stuff with Make. We build...
View Article