Compare commits
17 Commits
93c2a29386
...
1.21
Author | SHA1 | Date | |
---|---|---|---|
64cf681e6d | |||
9365282f2b | |||
1e278af96e | |||
26c4556498 | |||
57d5c7ebe9 | |||
f68046edae | |||
987edc2250 | |||
2b9d2b60cf | |||
e4b2ca67d7 | |||
5a613de1a9 | |||
07a266d928 | |||
20131e4879 | |||
3be8c26d60 | |||
0947bc0675 | |||
694fa42ce7 | |||
3e69fb7512 | |||
2d360b24f1 |
27
.github/workflows/ci_build.yml
vendored
Normal file
27
.github/workflows/ci_build.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
name: Build
|
||||||
|
|
||||||
|
on: push
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 拉取项目
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
- name: 初始化环境
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
with:
|
||||||
|
distribution: 'liberica'
|
||||||
|
java-version: '21'
|
||||||
|
- name: 初始化Gradle
|
||||||
|
uses: gradle/actions/setup-gradle@v4
|
||||||
|
- name: 构建项目
|
||||||
|
run: |
|
||||||
|
chmod 755 ./gradlew
|
||||||
|
./gradlew build
|
||||||
|
- name: 上传构建
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: MCTools.jar
|
||||||
|
path: build/libs/MCTools-1.0.jar
|
||||||
|
retention-days: 16
|
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
build
|
||||||
|
.gradle
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,2 +0,0 @@
|
|||||||
#Thu Aug 31 22:07:12 CST 2023
|
|
||||||
gradle.version=8.1.1
|
|
Binary file not shown.
Binary file not shown.
@ -1,11 +0,0 @@
|
|||||||
commonProperties
|
|
||||||
fabric.development=true
|
|
||||||
fabric.remapClasspathFile=E:\MinecraftProjects\MCTools\.gradle\loom-cache\remapClasspath.txt
|
|
||||||
log4j.configurationFile=E:\MinecraftProjects\MCTools\.gradle\loom-cache\log4j.xml
|
|
||||||
log4j2.formatMsgNoLookups=true
|
|
||||||
fabric.log.disableAnsi=false
|
|
||||||
clientArgs
|
|
||||||
--assetIndex
|
|
||||||
1.20.1-5
|
|
||||||
--assetsDir
|
|
||||||
C:\Users\undefined\.gradle\caches\fabric-loom\assets
|
|
@ -1,62 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<Configuration status="WARN" packages="com.mojang.util,net.minecrell.terminalconsole.util">
|
|
||||||
<Appenders>
|
|
||||||
|
|
||||||
<!-- System out -->
|
|
||||||
<Console name="SysOut" target="SYSTEM_OUT">
|
|
||||||
<PatternLayout>
|
|
||||||
<LoggerNamePatternSelector defaultPattern="%style{[%d{HH:mm:ss}]}{blue} %highlight{[%t/%level]}{FATAL=red, ERROR=red, WARN=yellow, INFO=green, DEBUG=green, TRACE=blue} %style{(%logger{1})}{cyan} %highlight{%msg%n}{FATAL=red, ERROR=red, WARN=normal, INFO=normal, DEBUG=normal, TRACE=normal}" disableAnsi="${sys:fabric.log.disableAnsi:-true}">
|
|
||||||
<!-- Dont show the logger name for minecraft classes-->
|
|
||||||
<PatternMatch key="net.minecraft.,com.mojang." pattern="%style{[%d{HH:mm:ss}]}{blue} %highlight{[%t/%level]}{FATAL=red, ERROR=red, WARN=yellow, INFO=green, DEBUG=green, TRACE=blue} %style{(Minecraft)}{cyan} %highlight{%msg{nolookups}%n}{FATAL=red, ERROR=red, WARN=normal, INFO=normal, DEBUG=normal, TRACE=normal}"/>
|
|
||||||
</LoggerNamePatternSelector>
|
|
||||||
</PatternLayout>
|
|
||||||
</Console>
|
|
||||||
|
|
||||||
<!-- Vanilla server gui -->
|
|
||||||
<Queue name="ServerGuiConsole" ignoreExceptions="true">
|
|
||||||
<PatternLayout>
|
|
||||||
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss} %level] (%logger{1}) %msg{nolookups}%n">
|
|
||||||
<!-- Dont show the logger name for minecraft classes-->
|
|
||||||
<PatternMatch key="net.minecraft.,com.mojang." pattern="[%d{HH:mm:ss} %level] %msg{nolookups}%n"/>
|
|
||||||
</LoggerNamePatternSelector>
|
|
||||||
</PatternLayout>
|
|
||||||
</Queue>
|
|
||||||
|
|
||||||
<!-- latest.log same as vanilla -->
|
|
||||||
<RollingRandomAccessFile name="LatestFile" fileName="logs/latest.log" filePattern="logs/%d{yyyy-MM-dd}-%i.log.gz">
|
|
||||||
<PatternLayout>
|
|
||||||
<LoggerNamePatternSelector defaultPattern="[%d{HH:mm:ss}] [%t/%level] (%logger{1}) %msg{nolookups}%n">
|
|
||||||
<!-- Dont show the logger name for minecraft classes-->
|
|
||||||
<PatternMatch key="net.minecraft.,com.mojang." pattern="[%d{HH:mm:ss}] [%t/%level] (Minecraft) %msg{nolookups}%n"/>
|
|
||||||
</LoggerNamePatternSelector>
|
|
||||||
</PatternLayout>
|
|
||||||
<Policies>
|
|
||||||
<TimeBasedTriggeringPolicy />
|
|
||||||
<OnStartupTriggeringPolicy />
|
|
||||||
</Policies>
|
|
||||||
</RollingRandomAccessFile>
|
|
||||||
|
|
||||||
<!-- Debug log file -->
|
|
||||||
<RollingRandomAccessFile name="DebugFile" fileName="logs/debug.log" filePattern="logs/debug-%i.log.gz">
|
|
||||||
<PatternLayout pattern="[%d{HH:mm:ss}] [%t/%level] (%logger) %msg{nolookups}%n" />
|
|
||||||
|
|
||||||
<!-- Keep 5 files max -->
|
|
||||||
<DefaultRolloverStrategy max="5" fileIndex="min"/>
|
|
||||||
|
|
||||||
<Policies>
|
|
||||||
<SizeBasedTriggeringPolicy size="200MB"/>
|
|
||||||
<OnStartupTriggeringPolicy />
|
|
||||||
</Policies>
|
|
||||||
|
|
||||||
</RollingRandomAccessFile>
|
|
||||||
</Appenders>
|
|
||||||
<Loggers>
|
|
||||||
<Logger level="${sys:fabric.log.level:-info}" name="net.minecraft"/>
|
|
||||||
<Root level="all">
|
|
||||||
<AppenderRef ref="DebugFile" level="${sys:fabric.log.debug.level:-debug}"/>
|
|
||||||
<AppenderRef ref="SysOut" level="${sys:fabric.log.level:-info}"/>
|
|
||||||
<AppenderRef ref="LatestFile" level="${sys:fabric.log.level:-info}"/>
|
|
||||||
<AppenderRef ref="ServerGuiConsole" level="${sys:fabric.log.level:-info}"/>
|
|
||||||
</Root>
|
|
||||||
</Loggers>
|
|
||||||
</Configuration>
|
|
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net.minecraft</groupId>
|
|
||||||
<artifactId>minecraft-merged-project-root</artifactId>
|
|
||||||
<version>1.20.1-net.fabricmc.yarn.1_20_1.1.20.1+build.10-v2</version>
|
|
||||||
</project>
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-api-base</artifactId>
|
|
||||||
<version>0.4.30+7abfd51577</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-api-lookup-api-v1</artifactId>
|
|
||||||
<version>1.6.35+4d8536c977</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-api</artifactId>
|
|
||||||
<version>0.87.0+1.20.1</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-biome-api-v1</artifactId>
|
|
||||||
<version>13.0.10+b3afc78b77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-block-api-v1</artifactId>
|
|
||||||
<version>1.0.9+e022e5d177</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-blockrenderlayer-v1</artifactId>
|
|
||||||
<version>1.1.40+b3afc78b77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-client-tags-api-v1</artifactId>
|
|
||||||
<version>1.1.1+97bb207577</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-command-api-v1</artifactId>
|
|
||||||
<version>1.2.33+f71b366f77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-command-api-v2</artifactId>
|
|
||||||
<version>2.2.12+b3afc78b77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-commands-v0</artifactId>
|
|
||||||
<version>0.2.50+df3654b377</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-containers-v0</artifactId>
|
|
||||||
<version>0.1.63+df3654b377</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-content-registries-v0</artifactId>
|
|
||||||
<version>4.0.9+b3afc78b77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-convention-tags-v1</artifactId>
|
|
||||||
<version>1.5.4+a1a980da77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-crash-report-info-v1</artifactId>
|
|
||||||
<version>0.2.18+aeb40ebe77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-data-generation-api-v1</artifactId>
|
|
||||||
<version>12.2.2+1e61dba177</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-dimensions-v1</artifactId>
|
|
||||||
<version>2.1.53+8536527b77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-entity-events-v1</artifactId>
|
|
||||||
<version>1.5.22+b3afc78b77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-events-interaction-v0</artifactId>
|
|
||||||
<version>0.6.1+e91849a877</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-events-lifecycle-v0</artifactId>
|
|
||||||
<version>0.2.62+df3654b377</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-game-rule-api-v1</artifactId>
|
|
||||||
<version>1.0.38+b04edc7a77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-gametest-api-v1</artifactId>
|
|
||||||
<version>1.2.12+b3afc78b77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-item-api-v1</artifactId>
|
|
||||||
<version>2.1.27+b3afc78b77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-item-group-api-v1</artifactId>
|
|
||||||
<version>4.0.10+23d9108177</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-key-binding-api-v1</artifactId>
|
|
||||||
<version>1.0.36+fb8d95da77</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Binary file not shown.
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>net_fabricmc_yarn_1_20_1_1_20_1_build_10_v2.net.fabricmc.fabric-api</groupId>
|
|
||||||
<artifactId>fabric-keybindings-v0</artifactId>
|
|
||||||
<version>0.2.34+df3654b377</version>
|
|
||||||
</project>
|
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user