Initial commit
This commit is contained in:
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
||||
BIN
.gradle/7.3.1/checksums/checksums.lock
Normal file
BIN
.gradle/7.3.1/checksums/checksums.lock
Normal file
Binary file not shown.
BIN
.gradle/7.3.1/checksums/md5-checksums.bin
Normal file
BIN
.gradle/7.3.1/checksums/md5-checksums.bin
Normal file
Binary file not shown.
BIN
.gradle/7.3.1/checksums/sha1-checksums.bin
Normal file
BIN
.gradle/7.3.1/checksums/sha1-checksums.bin
Normal file
Binary file not shown.
BIN
.gradle/7.3.1/dependencies-accessors/dependencies-accessors.lock
Normal file
BIN
.gradle/7.3.1/dependencies-accessors/dependencies-accessors.lock
Normal file
Binary file not shown.
0
.gradle/7.3.1/dependencies-accessors/gc.properties
Normal file
0
.gradle/7.3.1/dependencies-accessors/gc.properties
Normal file
BIN
.gradle/7.3.1/executionHistory/executionHistory.lock
Normal file
BIN
.gradle/7.3.1/executionHistory/executionHistory.lock
Normal file
Binary file not shown.
BIN
.gradle/7.3.1/fileChanges/last-build.bin
Normal file
BIN
.gradle/7.3.1/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
.gradle/7.3.1/fileHashes/fileHashes.lock
Normal file
BIN
.gradle/7.3.1/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
0
.gradle/7.3.1/gc.properties
Normal file
0
.gradle/7.3.1/gc.properties
Normal file
BIN
.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
BIN
.gradle/buildOutputCleanup/buildOutputCleanup.lock
Normal file
Binary file not shown.
2
.gradle/buildOutputCleanup/cache.properties
Normal file
2
.gradle/buildOutputCleanup/cache.properties
Normal file
@@ -0,0 +1,2 @@
|
||||
#Sat Dec 11 02:09:21 AST 2021
|
||||
gradle.version=7.3.1
|
||||
Binary file not shown.
Binary file not shown.
14
.gradle/loom-cache/launch.cfg
Normal file
14
.gradle/loom-cache/launch.cfg
Normal file
@@ -0,0 +1,14 @@
|
||||
commonProperties
|
||||
fabric.development=true
|
||||
fabric.remapClasspathFile=/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/remapClasspath.txt
|
||||
log4j.configurationFile=/Users/adellanicholson/Documents/Aspects/.gradle/loom-cache/log4j.xml
|
||||
log4j2.formatMsgNoLookups=true
|
||||
fabric.log.disableAnsi=false
|
||||
clientArgs
|
||||
--assetIndex
|
||||
1.18
|
||||
--assetsDir
|
||||
/Users/adellanicholson/.gradle/caches/fabric-loom/assets
|
||||
clientProperties
|
||||
java.library.path=/Users/adellanicholson/.gradle/caches/fabric-loom/1.18/natives
|
||||
org.lwjgl.librarypath=/Users/adellanicholson/.gradle/caches/fabric-loom/1.18/natives
|
||||
62
.gradle/loom-cache/log4j.xml
Normal file
62
.gradle/loom-cache/log4j.xml
Normal file
@@ -0,0 +1,62 @@
|
||||
<?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>
|
||||
1
.gradle/loom-cache/remapClasspath.txt
Normal file
1
.gradle/loom-cache/remapClasspath.txt
Normal file
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.github.apace100</groupId>
|
||||
<artifactId>apoli</artifactId>
|
||||
<version>d0705e1b8b</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.github.apace100</groupId>
|
||||
<artifactId>apoli</artifactId>
|
||||
<version>v2.2.0</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.github.apace100</groupId>
|
||||
<artifactId>calio</artifactId>
|
||||
<version>bd0be1a331</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.github.apace100</groupId>
|
||||
<artifactId>calio</artifactId>
|
||||
<version>v1.4.2</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.github.apace100</groupId>
|
||||
<artifactId>origins-fabric</artifactId>
|
||||
<version>v1.0.0</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.github.apace100</groupId>
|
||||
<artifactId>origins-fabric</artifactId>
|
||||
<version>v1.3.0</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.jamieswhiteshirt</groupId>
|
||||
<artifactId>reach-entity-attributes</artifactId>
|
||||
<version>2.1.1</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.terraformersmc</groupId>
|
||||
<artifactId>modmenu</artifactId>
|
||||
<version>2.0.0-beta.7</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.com.terraformersmc</groupId>
|
||||
<artifactId>modmenu</artifactId>
|
||||
<version>3.0.0</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.io.github.ladysnake</groupId>
|
||||
<artifactId>PlayerAbilityLib</artifactId>
|
||||
<version>1.3.0-nightly.1.17-rc1</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.io.github.ladysnake</groupId>
|
||||
<artifactId>PlayerAbilityLib</artifactId>
|
||||
<version>1.3.0</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.io.github.onyxstudios.Cardinal-Components-API</groupId>
|
||||
<artifactId>cardinal-components-base</artifactId>
|
||||
<version>3.0.0-nightly.1.17-pre1</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.io.github.onyxstudios.Cardinal-Components-API</groupId>
|
||||
<artifactId>cardinal-components-base</artifactId>
|
||||
<version>4.0.0-alpha.1+21w37a</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.io.github.onyxstudios.Cardinal-Components-API</groupId>
|
||||
<artifactId>cardinal-components-entity</artifactId>
|
||||
<version>3.0.0-nightly.1.17-pre1</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.io.github.onyxstudios.Cardinal-Components-API</groupId>
|
||||
<artifactId>cardinal-components-entity</artifactId>
|
||||
<version>4.0.0-alpha.1+21w37a</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.me.shedaniel.cloth</groupId>
|
||||
<artifactId>basic-math</artifactId>
|
||||
<version>0.5.1</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.me.shedaniel.cloth</groupId>
|
||||
<artifactId>basic-math</artifactId>
|
||||
<version>0.6.0</version>
|
||||
</project>
|
||||
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.me.shedaniel.cloth</groupId>
|
||||
<artifactId>cloth-config-fabric</artifactId>
|
||||
<version>4.11.14</version>
|
||||
</project>
|
||||
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.me.shedaniel.cloth</groupId>
|
||||
<artifactId>cloth-config-fabric</artifactId>
|
||||
<version>6.0.42</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.adriantodt.fabricmc</groupId>
|
||||
<artifactId>fallflyinglib</artifactId>
|
||||
<version>3.0.0-beta.2</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-api-base</artifactId>
|
||||
<version>0.4.1+b4f4f6cdc8</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-api-lookup-api-v1</artifactId>
|
||||
<version>1.4.0+16d92c47c8</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-api</artifactId>
|
||||
<version>0.44.0+1.18</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-biome-api-v1</artifactId>
|
||||
<version>6.0.1+ded849a9c8</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-blockrenderlayer-v1</artifactId>
|
||||
<version>1.1.9+3ac43d95c8</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-command-api-v1</artifactId>
|
||||
<version>1.1.6+3ac43d95c8</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-commands-v0</artifactId>
|
||||
<version>0.2.5+b4f4f6cdc8</version>
|
||||
</project>
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
<?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_18_1_18_build_1_v2.net.fabricmc.fabric-api</groupId>
|
||||
<artifactId>fabric-containers-v0</artifactId>
|
||||
<version>0.1.18+d154e2c6c8</version>
|
||||
</project>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user