Sonatype Updates
Sonatype "sunset" their OSSRH system for publisning into https://mvnrepository.com/ on 2025-06. These steps will allow using the existing Maven plugins to publish while working on switching to their new plugin.
Sonatype "sunset" their OSSRH system for publisning into https://mvnrepository.com/ on 2025-06. These steps will allow using the existing Maven plugins to publish while working on switching to their new plugin.
Stand-alone Programs Instructions and template for a stand-alone Java program built with Kotlin source code. An easy way to start with is, since JetBrains is behind this whole thing, just…
Azure Blob Storage ("Azure") and Google Cloud Storage ("GCS") are now supported as well as AWS S3 ("S3") by log4j-s3-search project. While working on adding the two options, I learned…
It turns out that this is quite an involved process with a lot of configuration and coordination w/ Sonatype. It took several days, upwards to a week or so, for…
ARGH! I've been bounced between languages. It's driving me NUTS. This is a comparison of how to do something in each to help me map between them. There is definitely…
I cannot believe how little info there is on using multiple Datasources in Spring Boot. Out of the box, Spring Boot makes it very easy to configure the default Datasource: tweak…
Project Setup From the CLI or http://start.spring.io/, initialize a project with "web" capability. What ends up happening is addition of the dependency: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> Start with this directory…