Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 576 Bytes

README.md

File metadata and controls

26 lines (23 loc) · 576 Bytes

#Auto-Trigger

SSL Configuration

server:
  ssl:
    key-alias: "tomcat-https"
    key-store: "classpath:keystore.jks"
    key-store-type: JKS
    key-password: "<replace-with-password>"
    key-store-password: "<replace-with-password>"
  port: 8443

NOTE: For disabling TLS, change the port to "8080" and add null values for all the "ssl" related fields.

Checkstyle

Use below command to execute the checkstyle test.

./gradlew checkstyleMain

Spotless

Use below command to execute the spotless apply.

./gradlew spotlessApply