Before using Stylize in your plugin, you need to install it on your server:
Download the latest version from GitHub Releasesarrow-up-right
Place the JAR file in your server's plugins folder
plugins
Restart your server
depend: [Stylize]
dependencies: server: Stylize: load: BEFORE required: true join-classpath: true
repositories { maven { url 'https://jitpack.io' } }
repositories { mavenCentral() maven { url = uri("https://jitpack.io") } }
<repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories>
dependencies { compileOnly 'com.github.SytexMC:Stylize:2.0.0' }
dependencies { compileOnly("com.github.SytexMC:Stylize:2.0.0") }
<dependencies> <dependency> <groupId>com.github.SytexMC</groupId> <artifactId>Stylize</artifactId> <version>2.0.0</version> </dependency> </dependencies>
Last updated 11 months ago