JAVA implementation of the linked list data structure.
A sequence of nodes containing some data, and a pointer/link to the next in the sequence.
From the project root, execute: ./mvn clean install
Note: This must occur prior to the Release Deployment!
Make sure the “release-sign-artifacts” and “ossrh”
Maven profiles are active.
1) mvn clean
2) mvn release:prepare -Possrh,release-sign-artifacts
3) mvn release:perform -Possrh,release-sign-artifacts
4) git push --tags
5) git push origin master
1) mvn versions:set -DnewVersion=1.2.3