Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 773 Bytes

File metadata and controls

34 lines (27 loc) · 773 Bytes

DynamicReplacer

An intermediary for hooking into replacer plugins. Allows you to hook into DynamicReplacer and then have DynamicReplacer register your replacers in any of the replacer plugins that it hooks into.

Dependency

Gradle

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

dependencies {
    com.github.clubobsidian.dynamicreplacer:common:1.0.0
}

Maven

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

<dependency>
	<groupId>com.github.clubobsidian.dynamicreplacer</groupId>
	<artifactId>common</artifactId>
	<version>1.0.0</version>
</dependency>