DEADSOFTWARE

Update version script
[cavedroid.git] / buildSrc / src / main / kotlin / Versions.kt
1 object Versions {
3 /**
4 * Android gradle plugin version
5 */
6 const val agp = "8.2.2"
8 /**
9 * LibGDX version
10 *
11 * [Source](https://github.com/libgdx/libgdx)
12 */
13 const val gdx = "1.12.0"
15 /**
16 * Dagger version
17 *
18 * [Source](https://github.com/google/dagger)
19 */
20 const val dagger = "2.51.1"
22 /**
23 * Kotlin version
24 *
25 * [Source](https://github.com/JetBrains/kotlin)
26 */
27 const val kotlin = "1.9.24"
29 /**
30 * Kotlinx serialization version
31 *
32 * [Source](https://github.com/Kotlin/kotlinx.serialization/)
33 */
34 const val kotlinxSerialization = "1.6.3"
36 /**
37 * Kotlin Symbol Processing version
38 *
39 * [Source](https://github.com/google/ksp)
40 */
41 const val ksp = "1.9.24-1.0.20"
43 /**
44 * Kotlin poet version
45 *
46 * [Source](https://github.com/square/kotlinpoet)
47 */
48 const val kotlinPoetKsp = "1.16.0"
50 /**
51 * JetBrains annotations version
52 *
53 * [Source](https://github.com/JetBrains/java-annotations)
54 */
55 const val jetbrainsAnnotations = "23.1.0"
57 /**
58 * Automultibind version
59 *
60 * [Source](https://github.com/fredboy/automultibind)
61 */
62 const val automultibind = "1.0.0"
63 }