Evgeny Naumenko

Results 9 issues of Evgeny Naumenko

Steps to reproduce the problem (provide example Markdown if applicable): ``` Abc|Def ---|--- 1|2 | ``` Expected behavior: ``` Abc Def 1 2 ``` Actual behavior: ``` java.lang.StringIndexOutOfBoundsException: String index...

bug

`gradle.addBuildListener` is not compatible with the configuration cache. We need to either ditch it or replace it with a modern alternative. See https://docs.gradle.org/6.8.2/javadoc/org/gradle/tooling/events/OperationCompletionListener.html https://docs.gradle.org/6.8.2/javadoc/org/gradle/build/event/BuildEventsListenerRegistry.html

[TCdeps] Unable to pin build: buildType:...,number:2021.1.13553. Server response: HTTP 404

So if TeamCity is slow to answer these routines won't slow the build down. This is especially important since the plugin is authenticating on each and every rest call. TC,...

https://github.com/jk1/TeamCity-dependencies-gradle-plugin/blob/master/src/main/groovy/com.github.jk1.tcdeps/model/ArtifactDescriptor.groovy assumes the file extension to be always there

Consider the following dynamic pattern: ``` task unpackDeps

bug

Current implementation relies on HttpUrlConnection for that, which is known to handle network timeout issues in an improper manner. I'd be nice to have configuration options to define desired request...

enhancement

``` project.configurations.all { Configuration root -> root.incoming.beforeResolve { root.hierarchy.each { Configuration configuration -> configuration.incoming.dependencies.findAll { it in ModuleDependency && it.version }.each { ... } } } } ```