blob: 03fe2608d12ae7c10e424b7b824825ec56bd499e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
plugins {
id 'net.kyori.blossom' version '1.1.0'
}
dependencies {
compile project(':spark-common')
compileOnly 'com.velocitypowered:velocity-api:1.0.3'
annotationProcessor 'com.velocitypowered:velocity-api:1.0.3'
}
blossom {
replaceTokenIn('src/main/java/me/lucko/spark/velocity/VelocitySparkPlugin.java')
replaceToken '@version@', project.pluginVersion
replaceToken '@desc@', project.pluginDescription
}
|