File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ cd JavaPluginTemplate
2525
2626- Rename package name from ` org.allaymc.javaplugintemplate ` to ` your.group.name.and.pluginname `
2727- Edit [ build.gradle.kts] ( build.gradle.kts ) and [ settings.gradle.kts] ( settings.gradle.kts )
28+ - Update API version in [ build.gradle.kts] ( build.gradle.kts ) to the latest version (see TODO).
29+ You can find the latest version here: https://central.sonatype.com/artifact/org.allaymc.allay/api
2830- Edit [ plugin.json] ( src/main/resources/plugin.json )
2931- Reload gradle
3032
Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ java {
1717
1818repositories {
1919 mavenCentral()
20- maven(" https://jitpack.io/" )
2120 maven(" https://repo.opencollab.dev/maven-releases/" )
2221 maven(" https://repo.opencollab.dev/maven-snapshots/" )
2322 maven(" https://storehouse.okaeri.eu/repository/maven-public/" )
2423}
2524
2625dependencies {
27- compileOnly(group = " org.allaymc.allay" , name = " api" , version = " master-SNAPSHOT" )
26+ // TODO: Remember to update the version of api to the latest
27+ compileOnly(group = " org.allaymc.allay" , name = " api" , version = " 0.12.0" )
2828 compileOnly(group = " org.projectlombok" , name = " lombok" , version = " 1.18.34" )
2929
3030 annotationProcessor(group = " org.projectlombok" , name = " lombok" , version = " 1.18.34" )
You can’t perform that action at this time.
0 commit comments