Skip to content

DeveloperXY/ResumeGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ResumeGenerator

A Java API that relies on annotations to generate CVs in HTML format.

Prerequisites

You need JDK8 or above to run this API.

Usage

  1. Create a class that extends the CV class (located in the com.developerxy.resume package):
    public class MyResume extends CV {
    
    }
  1. Use the provided @PersonalInfo, @Experiences, @Formations, @Projects, @Skills, @Accounts to generate the sections of the resume that you want.

  2. Create an instance of your class, & call the build() method on it to generate the resume:

    public static void main(String[] args) {
        new MyResume().build();
    }

Download

The API is distributed as a JAR file, that you need to include in your project. First release: https://github.com/DeveloperXY/ResumeGenerator/releases/download/v1.0/ResumeGenerator.jar

Documentation

https://github.com/DeveloperXY/ResumeGenerator/wiki