-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
56 lines (46 loc) · 1.59 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
56 lines (46 loc) · 1.59 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
plugins {
kotlin("jvm") version "2.3.20"
id("com.typewritermc.module-plugin") version "2.1.0"
}
repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
maven("https://repo.codemc.io/repository/maven-public/")
maven("https://maven.typewritermc.com/beta/")
maven("https://maven.typewritermc.com/external/")
maven("https://jitpack.io")
mavenLocal()
}
group = "btcrenaud"
version = "0.0.8"
dependencies {
compileOnly("io.papermc.paper:paper-api:1.21.4-R0.1-SNAPSHOT")
compileOnly("com.typewritermc:engine-paper")
implementation("com.typewritermc:QuestExtension:0.9.0")
implementation("com.typewritermc:BasicExtension:0.9.0")
implementation("com.typewritermc:EntityExtension:0.9.0")
implementation("com.typewritermc:RoadNetworkExtension:0.9.0")
}
typewriter {
namespace = "btcrenaud"
extension {
name = "Companion"
shortDescription = "Typewriter extension for Companion support."
description = "This extension adds support for Companions in Typewriter — NPCs that follow the player and interact with the environment."
engineVersion = "0.9.0-beta-175"
channel = com.typewritermc.moduleplugin.ReleaseChannel.BETA
dependencies {
dependency("typewritermc", "Entity")
}
paper()
dependencies {
dependency("typewritermc", "Quest")
dependency("typewritermc", "Basic")
dependency("typewritermc", "Entity")
dependency("typewritermc", "RoadNetwork")
}
}
}
kotlin {
jvmToolchain(21)
}