Yeikel

Results 184 issues of Yeikel

Currently, the button "View more details on GitHub Actions" redirects to results of the check and that's hardly useful. In my opinion, It should instead point to the raw build...

We should automate the package creation as it is currently tedious to think about it while pushing changes We can add it as a build step

> * io.reactiverse:vertx-maven-plugin:1.0.28 > [WARNING] Declared at location(s): > [WARNING] * sample:0.0.0-SNAPSHOT (pom.xml) @ line 146 > [WARNING] Used in module(s): > [WARNING] * sample:0.0.0-SNAPSHOT (pom.xml) > [WARNING] Plugin issue(s):...

Closes #526 Tested here https://github.com/yeikel/elasticsearch/runs/8062583232?check_suite_focus=true

I am running behind a corporate proxy and I have a custom `distributionUrl` such as https://myHost/repository/gradle-distributions ```yml distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https://myHost/repository/gradle-distributions/gradle-7.3.3-all.zip distributionSha256Sum=c9490e938b221daf0094982288e4038deed954a3f12fb54cbf270ddf4e37d879 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists ``` Currently, using the basic configuration it...

```java public static final List entries = Arrays.asList("A","B"); ``` ```java public static final List entries = Collections.unmodifiableList(Arrays.asList("A","B")); ``` While `List.of` is also an option, it is important to note that...

recipe

See https://rules.sonarsource.com/java/RSPEC-1244 Relevant https://stackoverflow.com/questions/1088216/whats-wrong-with-using-to-compare-floats-in-java

recipe

Before : ```java Map a = new Hashmap(); a.add("hello","world"); Map b = new HashMap(); for (Map.Entry s : a.entrySet()){ b.put(s.getKey(),s.getValue()); } // Lists List l1 = new ArrayList(); l1.add(1); List...

recipe