DevOps Classroom notes 10/Sep/2025

Additional info to know about enterpirse Project

  • Projects use dependencies which are community or enterprise libraries.
  • Projects will have unit tests with test harness frameworks (junit, xunit, jasmine, pytest….) and we need to get coverage results
  • Code needs to go through
    • Static Code Analysis
    • lints
    • security scans
  • Quality Gates: Enforces all the necessary checks are success before merging the code.

Maven

  • Maven introduces project object model (pom)
  • Maven uses convention over configuration
  • Maven java project directory structure
project-root/
├── pom.xml
└── src/
    ├── main/
    │   ├── java/
    │   │   └── com/yourcompany/yourproject/
    │   │       └── YourMainClass.java
    │   └── resources/
    │       └── application.properties
    └── test/
        ├── java/
        │   └── com/yourcompany/yourproject/
        │       └── YourMainClassTest.java
        └── resources/
            └── test-data.xml
  • pom.xml file has a schema
  • Maven lifecycle phases
    • validate
    • clean
    • compile
    • test
    • package
    • install
    • deploy
  • Maven has a repository concept

Java Packaging formats

  • jar
  • ear
  • war
Published
Categorized as Uncategorized Tagged

By continuous learner

devops & cloud enthusiastic learner

Leave a ReplyCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Please turn AdBlock off
Social Media Icons Powered by Acurax Web Design Company

Discover more from Direct DevOps from Quality Thought

Subscribe now to keep reading and get access to the full archive.

Continue reading

Exit mobile version
%%footer%%