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
- Create a class that extends the
CVclass (located in thecom.developerxy.resumepackage):
public class MyResume extends CV {
}
-
Use the provided
@PersonalInfo,@Experiences,@Formations,@Projects,@Skills,@Accountsto generate the sections of the resume that you want. -
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