-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (27 loc) · 1.08 KB
/
build.gradle
File metadata and controls
31 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
plugins {
id 'java'
id 'net.kyori.blossom' version '1.3.0'
}
String packagePath = 'dev.frankheijden.insights.addons.plotsquared'
group = packagePath
version = '2.1.2'
description = 'PlotSquaredAddon'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_16
repositories {
mavenCentral()
maven { url 'https://papermc.io/repo/repository/maven-public/' }
maven { url 'https://repo.fvdh.dev/snapshots' }
maven { url 'https://maven.enginehub.org/repo/' }
maven { url 'https://repo.phoenix616.dev/' } // com.intellectualsites:Pipeline:1.4.0-SNAPSHOT
}
dependencies {
compileOnly 'dev.frankheijden.insights:Insights:6.7.0-SNAPSHOT'
compileOnly 'io.papermc.paper:paper-api:1.17.1-R0.1-SNAPSHOT'
compileOnly 'com.plotsquared:PlotSquared-Core:6.2.0' // JDK 16
compileOnly('com.plotsquared:PlotSquared-Bukkit:6.2.0') { transitive = false }
compileOnly 'com.sk89q.worldedit:worldedit-bukkit:7.2.2'
}
blossom {
replaceTokenIn 'src/main/java/dev/frankheijden/insights/addons/plotsquared/PlotSquaredAddon.java'
replaceToken '{version}', version
}