Patrick Koenig

Results 72 comments of Patrick Koenig

@CRogers Can we please fix this without regressing on the improvements from https://github.com/palantir/gradle-baseline/pull/2355?

You can avoid SSL errors by creating an always trusting `SSLSocketFactory` and setting it as the default: ``` static { HttpsURLConnection.setDefaultSSLSocketFactory(sslSocketFactory); } ```

Well you don't have to use an always-trusting one, you can provide a custom truststore.

I'd like to better understand why we think this behavior should be provided by this library. This library is intended to be a utility to create Conjure clients, not a...

@carterkozak this should be good to merge now

@carterkozak any other concerns here?

Closing in favor of https://github.com/palantir/gradle-baseline/pull/2724

My default is also to prefer avoiding inner imports, but I think this is hugely context dependent. For example, [AtlasDB](https://github.com/palantir/atlasdb)'s generated table classes contains all row, column, and column value...

I have a minimal reproduction here: [repro.zip](https://github.com/palantir/gradle-baseline/files/14154436/repro.zip) This seems to be the result of some interaction between the following plugins: - `com.palantir.baseline-java-versions` - `com.palantir.consistent-versions` - `com.palantir.external-publish-jar` I can reproduce the...

Closing in favor of https://github.com/palantir/gradle-baseline/pull/2839