Skip to content

Latest commit

 

History

History
62 lines (41 loc) · 2.85 KB

README.md

File metadata and controls

62 lines (41 loc) · 2.85 KB

What is it?

This project declares the original spring-boot-starter-parent as its parent and inherits everything from it and adds more capabilities to the parent pom.

By using this as the parent pom you will get below plugins setup automcatically for you

How To Use

Declare this pom as the parent pom for your sprinboot project and thats almost everything you need.

    <parent>
        <groupId>com.cooldatasoft</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.6.7</version>
    </parent>

Check Latest Dependency Version

 mvn versions:display-dependency-updates

Release

mvn -DperformRelease=true clean compile deploy

##Automatically Configured plugins when added to plugins tag in pom.xml

Property Default Description
checkstyle.consoleOutput true Prints output to console
checkstyle.failOnViolation true Fails build if there are violations
checkstyle.failsOnError true Fails build if there are errors