forked from QuiltMC/quilt-standard-libraries
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Versions.java
39 lines (33 loc) · 1001 Bytes
/
Versions.java
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
package qsl.internal;
/**
* Version constants used across the convention build scripts.
*
* To use inside of convention build scripts, simply import this class and refer to the public static final fields.
*/
public final class Versions {
/*
* These must be in a Java class file due to issues with keeping this data in the groovy source set, since the
* convention plugins will not be able to see the groovy classes then.
*
* The gradle.properties does not work here either because you would need to load it in every single project, and it
* is not strictly defined in the IDE.
*/
/**
* The QSL version
*/
public static final String QSL_VERSION = "0.1.0";
/**
* The target Minecraft version.
*/
public static final String MINECRAFT_VERSION = "1.17.1";
/**
* The target Yarn build.
*/
public static final String YARN_BUILD = "2";
/**
* The version of Quilt Loader to use.
*/
public static final String LOADER_VERSION = "0.13.1-rc.10";
private Versions() {
}
}