Goal: The purpose of this project is to test CI-CD Pipeline setup with Jenkins Automation Server.
src/main/resources/application.properties
Be in the directory docker-jenkins
Create a database with name : websystique
Database connectivity config is in : src/main/resources/application.properties
CREATE TABLE EMPLOYEE( id INT NOT NULL auto_increment, name VARCHAR(50) NOT NULL, joining_date DATE NOT NULL, salary DOUBLE NOT NULL, ssn VARCHAR(30) NOT NULL UNIQUE, PRIMARY KEY (id) );