Gradle issue Could not expand ZIP
Hey, i’m facing the same issue, You got any solution for this?
View ArticleGradle issue Could not expand ZIP
Can you post your Copy task? I’m guessing it’s different from the OP’s script
View ArticleGradle probelm with Java I/O in Intellij IDEA
I looked into this not too long ago here: Gradle Progect System.out.print("TEST") don't display on the console in IntelliJ My conclusion was that there is a buffer somewhere between the IntelliJ...
View ArticleUse only one artifactory for all dependencies
I’m trying to force Gradle to use only one repository which is accessible on the internal network and which should be a mirror for all public repositories. I spend on it already 4 days without no...
View ArticleHow to log finer levels in tests
Hi, I just don’t know how to achieve this, and don’t find anything in docs. It’s very simple: I have this basic build.gradle: apply plugin: 'java' apply plugin: 'application' mainClassName =...
View ArticleTransfer ownership of gradle-cucumber-plugin
Hi @gregmunt, Sorry for the late reply on this request. We opened an issue internally but didn’t follow up on it until now. Unfortunately, everything outside of the normal use case of the portal is...
View ArticleWhy do WARs have no dependencies with maven-publish
Well maybe a more expressive example is needed. Just for the record in Java EE the archive layout is like this: Ear \--- lib | |- tool-jar-1 | |- tool-jar-2 |- ejb-module (0..n) |- war-module (0..n)...
View ArticleGradle probelm with Java I/O in Intellij IDEA
Thank you very much for your quick reply. I also faced the same result after flushing too. No improvement. So I was thinking about posting in the intellij forums too. The existing thread there has...
View ArticleGradlew tasks not showing all tasks
I have been working on an android app and recently set up Jenkins on Google Cloud (Ubuntu 16.04) to make builds. When I run gradlew tasks on my local machine(Mac) it shows a lot more tasks than what I...
View ArticleGradlew tasks not showing all tasks
I find this to be a strange choice but “gradle tasks” will only show tasks where “group” is not null. Tasks where “group” is null are considered “hidden”. I think that you can do something like...
View ArticleGradlew tasks not showing all tasks
gradlew tasks --all gives the same results. I do not understand why the same codebase would yield different tasks between my local machine and the Ubuntu instance. For example for the group “Android...
View ArticleGradlew tasks not showing all tasks
Ah sorry… I didn’t fully read your question before answering. I’m guessing there’s a reason that the tasks weren’t added to the Gradle model on your Ubuntu box. Have you installed android studio or...
View ArticleConsolidate imported plugins to custom plugin using Kotlin
I have microservices that will share some of the same configuration between all of them, mainly Jib, publish, and release. Not sure if it’s possible to do the same for dependencies but it would be...
View ArticleGradle 5.6.3 released
Gradle 5.6.3 has been released. This release addresses several regressions reported against Gradle 5.6. This is the final minor release for Gradle 5.x. Read the release notes
View ArticleHave a problem with multiproject bintray publication
Hello guys. I have a project with 2 submodules and I need to write a script that will publish the binaries of each projects in bintray. After a whole month of fuss and suffering, I managed to write at...
View Articleorg.gradle.internal.exceptions.LocationAwareException: Execution failed for...
I am new to android development. I am facing this issue what should i do to remove this error. I am running android studio 3.5 in win7 32 bit machine. kindly help. this is my build output.
View Articlecom.android.builder.internal.aapt.v2.Aapt2InternalException: AAPT2...
I try to build Unity project to Android platform via Jenkins. When I build the project in Unity Editor, it works well - succesfully get my APK. But if I build the same project in same condition on...
View ArticleDeprecation regarding usage of BuildSrc in gradle settings
Hello dear Gradle community, I just started out using gradle and use the buildSrc concept to declare constants for dependencies and their versions to conveniently use the same versions of dependecies...
View ArticleOptimizing Build Speed
The solution was made up the following: Ensure nothing executes during configuration phase. This phase can set properties and configure projects. Anything else needs to happen in a target in doFirst...
View Article