This repository was archived by the owner on Dec 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgradle.properties
59 lines (45 loc) · 1.51 KB
/
gradle.properties
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
56
57
58
59
systemProp.org.gradle.internal.launcher.welcomeMessageEnabled=false
kotlin.code.style=official
# Incremental compiliations breaks the codebase
ksp.incremental=false
# The version of this software. This is compiled into the constants
serverVersion=1.0.6
# This is the name of the jar file that will be produced when app:shadowJar is
# run. Note: If you are planning on using this in a docker image you will need
# to update the file name inside of Dockerfile aswell
outputJarFile=server.jar
# Kotlin Version
kotlinVersion=1.7.10
# The java bytecode version to compile the
# Kotlin code against. If you want to compile
# it against a newer version you can change this
jvmTarget=11
# Netty Http Version
# com.jacobtread.netty:kotlin-netty-http
nettyHttpVersion=1.0.9
# Blaze Networking Version
# com.jacobtread.blaze:blaze-core
# com.jacobtread.blaze:blaze-annotations
# com.jacobtread.blaze:blaze-processor
blazeVersion=1.3.0
# XML Builder Version
# com.jacobtread.xml:xml-builder-kt
xmlVersion=1.0.0
# Shadow gradle plugin version
shadowVersion=7.1.2
# Netty Dependency Versions
# io.netty:netty-handler
# io.netty:netty-buffer
# io.netty:netty-codec-http
nettyVersion=4.1.79.Final
# Google KSP Version (com.google.devtools.ksp:symbol-processing-api)
# Make sure to update then when changing the kotlin version
kspVersion=1.7.10-1.0.6
# Detekt Plugin Version
# io.gitlab.arturbosch.detekt
detektVersion=1.21.0
jsonVersion=1.3.2
# Driver Versions
# (These are compiled into the constants file)
mysqlVersion=8.0.30
sqliteVersion=3.36.0.3