-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
27 lines (24 loc) · 757 Bytes
/
build.gradle
File metadata and controls
27 lines (24 loc) · 757 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
buildscript {
repositories {
mavenCentral()
maven { url 'https://jitpack.io/' }
}
dependencies {
classpath('com.github.Fox2Code.FoxLoader:dev:1.2.17')
}
}
apply plugin: 'foxloader.dev'
version '1.2.3'
foxloader {
// forceReload = true
modId = "querymod"
modName = "Query Protocol Mod"
modVersion = project.version
modDesc = "A mod that adds support for the query protocol to ReIndev."
clientMod = "io.thiemann.kurt.query.QueryModClient"
serverMod = "io.thiemann.kurt.query.QueryModServer"
// Development tools don't like that both client and server define
// the same classes, so uncomment to disable the side inclusion.
// includeClient = false
// includeServer = false
}