Collecting workspace information```markdown
Small example Java project split into modules:
- Core logic: blogger-core/pom.xml — launcher:
com.blogger.Main - Utilities: blogger-util/pom.xml — key helper:
com.blogger.util.MessageUtility.isNull - Web / example app: blogger-web/pom.xml — example launcher:
com.blogger.Main - Top-level sample:
com.example.Main - Root build: pom.xml
Quick start
- Build all modules:
mvn package - Run core module (after build):
java -cp blogger-core-1.0-SNAPSHOT.jar com.blogger.Main
Notes
- Utility method to check strings: see
com.blogger.util.MessageUtility.isNull. - The project uses Java 21 as configured in the module POMs.