Skip to main content

Maven Dependency

info

You must replace all the x.x.x with the current version, which you can find from here.

Currently, there is no repository for Cosmetics API dependency, you must manually upload the API .jar file and add the dependency with system scope.

1. Get the API .jar file from the Discord server.​

Join my Discord server, create a ticket and ask for Cosmetics API .jar file.

The author (Mher) will give you the jar file which must has cosmetics-api-x.x.x.jar name, but x.x.x replaced with the current version.

2. Creating your Maven project.​

Create a new Maven project and put the jar file into the {projectDirectory}/libraries directory.

my-project
├── libraries
│ ├── cosmetics-api-x.x.x.jar

3. Adding the Maven dependency.​

Now open your project's pom.xml file and add the block below in dependencies.

<dependency>
<groupId>club.mher</groupId>
<artifactId>cosmetics-api</artifactId>
<version>x.x.x</version>
<scope>system</scope>
<systemPath>${project.basedir}\libraries\cosmetics-api-x.x.x.jar</systemPath>
</dependency>