-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
28 lines (24 loc) · 845 Bytes
/
build.gradle
File metadata and controls
28 lines (24 loc) · 845 Bytes
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
plugins {
id 'java'
id 'net.kyori.blossom' version '1.3.1'
}
String packagePath = 'dev.frankheijden.insights.addons.bentobox'
group = packagePath
version = '2.1.0'
description = 'BentoBoxAddon'
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_17
repositories {
mavenCentral()
maven { url 'https://papermc.io/repo/repository/maven-public/' }
maven { url 'https://repo.fvdh.dev/releases' }
maven { url 'https://repo.codemc.org/repository/maven-public/' }
}
dependencies {
compileOnly 'dev.frankheijden.insights:Insights:6.12.2'
compileOnly 'io.papermc.paper:paper-api:1.19.2-R0.1-SNAPSHOT'
compileOnly 'world.bentobox:bentobox:1.20.1-SNAPSHOT'
}
blossom {
replaceTokenIn 'src/main/java/dev/frankheijden/insights/addons/bentobox/BentoBoxAddon.java'
replaceToken '{version}', version
}