Skip to content

ClubObsidian/wrappy

Repository files navigation

wrappy

build codecov Known Vulnerabilities License

A wrapper to simplify the usage of configurate.

Supported formats

  • Yaml
  • Json
  • Hocon
  • XML

Build Artifacts

Build artifacts are hosted via Jitpack.

Setting up as a dependency

Gradle

repositories {
	mavenCentral()
	maven { url 'https://jitpack.io' }
}

compile 'com.github.clubobsidian:wrappy:4.1.0'

Maven

<repositories>
	<repository>
		<id>jitpack.io</id>
		<url>https://jitpack.io</url>
	</repository>
</repositories>

<dependency>
	<groupId>com.github.clubobsidian</groupId>
	<artifactId>wrappy</artifactId>
	<version>4.1.0</version>
</dependency>

Dependencies

Development

Eclipse

  1. Git clone the project
  2. Generate eclipse files with gradlew eclipse
  3. Import project
  4. Right click project -> Add gradle nature

Intellij

  1. Git clone the project
  2. Generate intellij files with gradlew idea
  3. Import project

Building

gradlew build