blob: aeeba60eb50204822792e969f808fc9e731acd73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
plugins {
id 'ninja.miserable.blossom' version '1.0.1'
}
dependencies {
compile project(':spark-common')
compileOnly 'com.velocitypowered:velocity-api:1.0-SNAPSHOT'
annotationProcessor 'com.velocitypowered:velocity-api:1.0-SNAPSHOT'
}
blossom {
replaceTokenIn('src/main/java/me/lucko/spark/velocity/SparkVelocityPlugin.java')
replaceToken '@version@', project.pluginVersion
}
|