Can I set up a mirror of the Gradle Artifactory Repository?
Hi, since repo.gradle.org is down again, is it possible for me (when it is back up) to set up a cache/mirror, so that our CI doesn’t grind to a halt beacuse the Gradle Repo is down? Can anyone point...
View ArticleConnection timeout on cached connectionpool
So, after some digging we found out what we think is happening. We have a gradle build that does the following a) compile java (reaches out to our artifactory and download dependencies) b) runs owasp...
View ArticleConnection timeout on cached connectionpool
Gradle 6.6-milestone-2 Build time: 2020-06-23 12:28:34 UTC Revision: 19fa87a998bd6ec4c21ba50dbf6fe9d12f374193 Kotlin: 1.3.72 Groovy: 2.5.12 Ant: Apache Ant™ version 1.10.8 compiled on May 10 2020 JVM:...
View ArticleJava Native Library Task in flat-folder multi-project
Apologies for thinking I was ready to share the problem but then finding out more with further investigation. Once some logging issues were fixed, I got further. The string escaping problem was solved...
View ArticleGradle file permissions for Centos 8
Hello to all. I am installing Silverpeas 6 on Centos 6. I have an error when i run ./silverpeas for the first time. The error message recomments to seek help from help.gradle.org [mepsaadmin@localhost...
View ArticleHow can I represent configuration of artifactory plugin from my custom plugin...
If I have the correct plugin code, it uses the old-style/deprecated “conventions” rather than the newer extension concept. I think this is the code that creates that convention. You should be able to...
View ArticleCompile project with groovy 3
Try ext groovy.version? reddit r/groovy - Is groovy 3 not compatible with gradle? 7 votes and 3 comments so far on Reddit
View ArticleCan I set up a mirror of the Gradle Artifactory Repository?
Do you have your own Artifactory or Nexus server? If you do it is easy to setup a remote repository that will cache. For example, we have our Artifactory instance configured to cache...
View ArticleGradle to identify which tests to run
If you have a test task that is executing when you think it shouldn’t be, you can run gradle with -i to output additional information about why gradle thinks that task is not up-to-date. For example,...
View ArticleError: The non-abstract class '_PlayerPageState' is missing implementations...
This doesn’t look like a generic Gradle issue and something that might be better serviced by the flutter community. Perhaps try reaching out there. flutter.dev Community Welcome to the Flutter...
View ArticleDifference `getting`/`existing`
The difference is their eagerness in the configuration avoidance APIs. getting is eager, existing is lazy. Similarly, when creating objects creating is eager, registering is lazy.
View ArticleCompile project with groovy 3
sourceCompatibility only works to specify the Java version, not Groovy. This flag only instructs the normal Java compiler to reject language syntax not present in the version you specify. This doesn’t...
View ArticleRunning problem when i move project to google drive
No unfortunately so i used Git VCS instead… Στις Δευ, 15 Ιουν 2020 στις 3:26 μ.μ., ο/η Erez Amir via Gradle Forums <gradle@discoursemail.com> έγραψε:
View ArticleFull compileTestJava run when only one test class changed
Hej, I am using Gradle 6.5.1 on a single java project. A clean compilation of the test folder for this project takes about 8 minutes. If I change a single test class that is not used by other test...
View ArticleAndroid Studio has a problem and needs help
hi, i have the same issue on win8.1 , did you manage to solve it?
View ArticleAndroid Gradle plugin and Kotlin plugin
In some cases, the error happens while I build my Android project. The error message likes “The Android Gradle plugin supports only Kotlin Gradle plugin version 1.2.51 and higher. Project...
View ArticleAndroid Studio has a problem and needs help
Hi, no, I have installed Windows 10 on my computer to solve the problem. Many blamed the problem on the system. I am writing using Google Translate. I think you understand what I am saying Pay, 2-iyl,...
View ArticleShare buildSrc classpath for subproject
I want to configure the extension from my custom plugin class CustomPlugin : Plugin<Project> { override fun apply(project: Project) { configureSonar(project) project.subprojects{...
View ArticleGenerating aggregate `TestReport` even on failure
I know this post is very old but I ran into a similar issue today and was able to get aggregate reports with --continue using task finalizers: tasks.create('testReport', TestReport) { destinationDir =...
View Article