- Amazon Elastic Container Registry (ECR)
- Azure Container Registry (ACR)
- JFrog Artifactory
- Docker Hub
Saturday, November 5, 2022
Jib Maven Plugin, Docker Desktop, Containers
Git Commit ID Maven Plugin
I found this plugin recently and absolutely love it: git-commit-id-maven-plugin
It generates a properties file (can select format, I use properties instead of json) under target/classes directory.
Here is the setup I am using on my home demo project:
pl.project13.maven git-commit-id-plugin 4.9.10 initialize get-the-git-infos revision ${project.basedir}/.git git false true ${project.build.outputDirectory}/git.properties ^git.build.(time|version)$ ^git.build.user.name$ ^git.commit.id$ ^git.commit.id.abbrev$ properties false false -dirty
The best way to make use of this plugin is to run it without the includeOnlyProperties section and see all the git information it generates.
From there, figure out which properties you actually want, and add the includeOnlyProperties section and specify just those properties.
AWS, Docker, ECR, ECS and Spring Boot weekend fun (Part 1)
It's a lovely, foggy Saturday. Perfect time to start digging into AWS.
I figured I would try and get a demo/Hello World Spring Boot App running inside a Docker Container, push the Docker Image up to ECR and try and get it running in Amazon Fargate and blog my experience.
1. Amazon Corretto. I have a slightly-outdated version of Amazon's OpenJDK 17 running on my home Dev machine.
c:\>java -version openjdk version "17.0.1" 2021-10-19 LTS OpenJDK Runtime Environment Corretto-17.0.1.12.1 (build 17.0.1+12-LTS) OpenJDK 64-Bit Server VM Corretto-17.0.1.12.1 (build 17.0.1+12-LTS, mixed mode, sharing)
I guess I could run on this, but decided to get the latest. cURL command to get the latest AmazonCorretto JDK for Windows:
curl -LO https://corretto.aws/downloads/latest/amazon-corretto-17-x64-windows-jdk.zip
At home I run WSL2 on my Windows Dev machine. I have a MacBook Pro also and jump between the 2 of them for personal development.
(don't forget to run a checksum to make sure the file was not tampered with, this actually saved me once)
I then manually went to https://corretto.aws/downloads/latest_sha256/amazon-corretto-17-x64-windows-jdk.zip and verified that the SHA-256 checksum is the same:
a89555d3a482f67bfdb9fe07b906592e9763e047e435f811c34b72bebd4200b3
After unzipping and setting up JAVA_HOME and Windows Path:
c:\>java -version openjdk version "17.0.5" 2022-10-18 LTS OpenJDK Runtime Environment Corretto-17.0.5.8.1 (build 17.0.5+8-LTS) OpenJDK 64-Bit Server VM Corretto-17.0.5.8.1 (build 17.0.5+8-LTS, mixed mode, sharing)
2. Spring Initializr + IntelliJ
I bought a JetBrains All Products Pack earlier this week (previously had been using IntelliJ CE + VS Code for Java + Angular personal development).
IntelliJ Ultimate Edition has great support for Spring Initializr.
PS C:\work\spring-boot-aws\demo> ./mvnw package PS C:\work\spring-boot-aws\demo> java -jar .\target\demo-0.0.1-SNAPSHOT.jar