Skip to content

Startup Guide

JavaEZLib edited this page May 22, 2022 · 12 revisions

JavaEZ startup guide

To start out, let's discuss how you will get this library on your IDE. Go to the part where your build system is and follow the instructions.

Maven

To use this project with Maven, please paste this code into your dependencies section.

<dependency>
   <groupId>io.github.javaezlib</groupId>
   <artifactId>JavaEZ</artifactId>
   <version>1.7</version>
</dependency>

After placing this in, Maven will do the rest!

Gradle

For Gradle projects, first make sure that

mavenCentral()

is in your repositories section. After that, put

implementation('io.github.javaezlib:JavaEZ:1.7')

in your dependencies section. Now just let Gradle do the work for you!

None

If you have no build system, you will need to download a JAR from our releases and add it to your Java classpath. Just download the jar of the version and follow instructions that fit your IDE to put it in the classpath. Once this is done, you can continue!

What's next?

After you put this in your IDE, you can continue to the Starting Out documentation for info.

JavaEZ is a library to help newcomers learn or just for the quality of life. This wiki explains everything about how to install and use JavaEZ to your liking.

Clone this wiki locally