Semyon Levin
Semyon Levin
We have a custom `checkstyle-extensions.jar` at the root of our project. Our `.idea/checkstyle-idea.xml`: ```xml ``` When we change `checkstyle-extensions.jar` we see that this file is locked by a Java process,...
I'm using `org.testcontainers:postgresql:1.11.3` dependency and it has no `Automatic-Module-Name` manifest attribute. It leads to module name conflict, as module name for the dependency is just `postgres`. Please add this attribute...
I'm trying to use codeowners-validator for my own [repository](https://github.com/remal/oss-template), which is **not** owned by an organisation, with default settings like this: ```yaml name: 'Codeowners validation' on: push: paths: - '.github/CODEOWNERS'...
Hello Immutables contributes, Basically, Immutables library covers 90% of my needs, but still there are some things that I'd like a DTO generator library to have. Could you please take...
Gradle `groovy` plugin supports Groovy joint compilation. It means that Gradle allows you to mix Groovy and Java code in one source dir. [GroovyCompile](https://docs.gradle.org/current/dsl/org.gradle.api.tasks.compile.GroovyCompile.html) has `options` property of type [CompileOptions](https://docs.gradle.org/current/javadoc/org/gradle/api/tasks/compile/CompileOptions.html)....
Hello @arnaudroger, Sorry if it's not the right place to ask this question, but... Is the project still alive and maintained? I'm asking because the latest activity was about year...
As I can see, parameter annotations are accessible now (273ba744abfa57e8a42fe37c6fd37fc540c398c2). Can we retrieve parameter name in case if it's stored in bytecode?
Mockito 2 and later can mock final classes and final methods. Take a look at [the wiki](https://github.com/mockito/mockito/wiki/What%27s-new-in-Mockito-2#unmockable). Can `CannotMockFinalClass` and `CannotMockFinalMethod` checks be a bit smarter and validate if `mock-maker-inline`...
The plugin can't be installed/updated in IDEA 2021.3. The installation fails with Plugin "Advanced Java Folding" was not installed: Request failed with status code 404 error.
I have Java 11 project and struggling from "split-package" issue (the first link in Google leads [here](https://blog.codefx.org/java/jsr-305-java-9/)). Please consider merging JSR205 (common annotations) with JSR305 to help users to avoid...