blob: e90ed7fecb984fdb5e0ad48768e41a821b0de208 (
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.4'
annotationProcessor 'com.velocitypowered:velocity-api:1.0.4'
}
blossom {
replaceTokenIn('src/main/java/me/lucko/spark/velocity/VelocitySparkPlugin.java')
replaceToken '@version@', project.pluginVersion
replaceToken '@desc@', project.pluginDescription
}
|