diff options
author | Kyle Wood <[email protected]> | 2021-06-20 01:59:07 -0500 |
---|---|---|
committer | Kyle Wood <[email protected]> | 2021-06-20 01:59:07 -0500 |
commit | 72955ad6c3b8085603176d7f17cb202006dcd9c7 (patch) | |
tree | bbc9db3428b532ccd72ff7cd8549bbb34e8b645d /build-data | |
parent | c83aa1a7f3dfaec7ee22ea2a07d8041130432d8b (diff) | |
download | Paper-72955ad6c3b8085603176d7f17cb202006dcd9c7.tar.gz Paper-72955ad6c3b8085603176d7f17cb202006dcd9c7.zip |
Merge library and mcdev imports files, bump paperweight
Diffstat (limited to 'build-data')
-rw-r--r-- | build-data/dev-imports.txt | 10 | ||||
-rw-r--r-- | build-data/library-imports.txt | 7 | ||||
-rw-r--r-- | build-data/mcdev-imports.txt | 4 |
3 files changed, 10 insertions, 11 deletions
diff --git a/build-data/dev-imports.txt b/build-data/dev-imports.txt new file mode 100644 index 0000000000..b818b96e27 --- /dev/null +++ b/build-data/dev-imports.txt @@ -0,0 +1,10 @@ +# You can use this file to import files from minecraft libraries into the project +# format: +# <artifactId> <fileName> +# both fully qualified and a file based syntax are accepted for <fileName>: +# authlib com/mojang/authlib/yggdrasil/YggdrasilGameProfileRepository.java +# datafixerupper com.mojang.datafixers.DataFixerBuilder +# datafixerupper com/mojang/datafixers/util/Either.java +# To import classes from the vanilla Minecraft jar use `minecraft` as the artifactId: +# minecraft net.minecraft.world.level.entity.LevelEntityGetterAdapter +# minecraft net/minecraft/world/level/entity/LevelEntityGetter.java diff --git a/build-data/library-imports.txt b/build-data/library-imports.txt deleted file mode 100644 index e6e68fdb6f..0000000000 --- a/build-data/library-imports.txt +++ /dev/null @@ -1,7 +0,0 @@ -# You can use this file to import files from minecraft libraries into the project -# format: -# <artifactId> <fileName> -# both fully qualified and a file based syntax are accepted for <fileName>: -# authlib com/mojang/authlib/yggdrasil/YggdrasilGameProfileRepository.java -# datafixerupper com.mojang.datafixers.DataFixerBuilder -# datafixerupper com/mojang/datafixers/util/Either.java diff --git a/build-data/mcdev-imports.txt b/build-data/mcdev-imports.txt deleted file mode 100644 index 6f0ec2fe82..0000000000 --- a/build-data/mcdev-imports.txt +++ /dev/null @@ -1,4 +0,0 @@ -# You can use this file to import files from vanilla into the project -# both fully qualified and a file based syntax are accepted here: -# net.minecraft.world.level.entity.LevelEntityGetterAdapter -# net/minecraft/world/level/entity/LevelEntityGetter.java |