Welcome to the MotorPH Payroll System repository! This repository houses the source code for our Java-based payroll management application. For a comprehensive understanding of the system, including detailed setup instructions, step-by-step usage guides for all user roles (Employee, HR, IT, Finance), technical specifications, and future improvement plans, please consult our dedicated documentation website. Explore the full documentation here: MotorPH Documentation.
This project relies on the following external libraries:
- OpenCSV: For handling CSV file operations.
- Commons Lang: Utility functions to enhance the core Java classes.
- JCalendar: For date and calendar functionalities.
You can download the required JAR files from their respective Maven repositories:
Alternatively, you can add these libraries directly to your Maven pom.xml file by including the following dependencies:
<dependencies>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.9</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.14.0</version>
</dependency>
<dependency>
<groupId>com.toedter</groupId>
<artifactId>jcalendar</artifactId>
<version>1.4</version>
</dependency>
</dependencies>