Skip to content

Releases: OreField/orefield-text

1.0.2

15 Oct 03:47

Choose a tag to compare

Additions

  • Category and Property now implement Object.hashCode(), Object.equals(Object), and Object.toString()
  • New category (Category.DEV)

1.0.0

31 Jul 03:37
2f4bb89

Choose a tag to compare

  • OreField Text API
  • Implementations:
    • Adventure

How to use

Maven

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

	<dependency>
	    <groupId>com.github.orefield.orefield-text</groupId>
	    <artifactId>{platform}</artifactId>
	    <version>v1.0.0</version>
	</dependency>

Gradle (groovy)

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

dependencies {
    implementation 'com.github.orefield.orefield-text:{platform}:v1.0.0'

Gradle (kotlin)

repositories {
    maven("https://jitpack.io")
}

dependencies {
    implementation("com.github.orefield.orefield-text:{platform}:v1.0.0")
}