gradle-baseline icon indicating copy to clipboard operation
gradle-baseline copied to clipboard

A set of Gradle plugins that configure default code quality tools for developers.

Results 159 gradle-baseline issues
Sort by recently updated
recently updated
newest added

Compared to version [3.37.0](https://repo1.maven.org/maven2/com/palantir/baseline/baseline-error-prone/3.37.0/baseline-error-prone-3.37.0.pom), version [3.37.1](https://repo1.maven.org/maven2/com/palantir/baseline/baseline-error-prone/3.37.1/baseline-error-prone-3.37.1.pom) and up contain an additional optional dependency on `com.palantir.baseline:gradle-baseline`. That artifact is [not](https://repo1.maven.org/maven2/com/palantir/baseline/) published to Maven Central. This was previously not a problem, but...

## What happened? If you have a class like this ``` public class Test { private final String myField; public Test(String myField) { this.myField = myField; } } ``` then...

Small FLUP to https://github.com/palantir/gradle-baseline/pull/2355

merge when ready
no changelog

FLUP to https://github.com/palantir/gradle-baseline/pull/2355

merge when ready

###### _excavator_ is a bot for automating changes across repositories. Changes produced by the roomba/versions-props-latest check. To enable or disable this check, please contact the maintainers of Excavator.

merge when ready
no changelog

## What happened? I have some code which I'm trying to keep as identical as possible to some third party code (rewrite of an algorithm in Java). So, I have...

## What happened? Using the PRs @iamdanfox wrote, I configured my JDK to use preview versions: ```gradle javaVersions { libraryTarget = '19_PREVIEW' distributionTarget = '19_PREVIEW' runtime = '19_PREVIEW' } ```...

## Before this PR As per the #hackweek-2022-sealed-unions channel, I'm trying to replace conjure visitors with Java 17 pattern-matching-switch expressions. I've got the codegen up at https://github.com/palantir/conjure-java/pull/1838, but I want...

## What happened? I'm trying to improve the IntelliJ integration and I just noticed this weird behaviour. A bulletproof way to reproduce it is: 1. pick a repo that uses...

## Before this PR Non-reusable persisters are created for each cell read/write. This causes a lot of object creation, which is particularly problematic when a new object mapper is created,...