Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Merge pull request #1499 from creeper123123321/abstraction
Add fabric metadata
Dieser Commit ist enthalten in:
Commit
a114e56e06
52
fabric/pom.xml
Normale Datei
52
fabric/pom.xml
Normale Datei
@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<parent>
|
||||
<artifactId>viaversion-parent</artifactId>
|
||||
<groupId>us.myles</groupId>
|
||||
<version>3.0.0-SNAPSHOT</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<artifactId>viaversion-fabric</artifactId>
|
||||
|
||||
<build>
|
||||
<resources>
|
||||
<resource>
|
||||
<targetPath>.</targetPath>
|
||||
<filtering>true</filtering>
|
||||
<directory>src/main/resources/</directory>
|
||||
<includes>
|
||||
<include>**</include>
|
||||
</includes>
|
||||
</resource>
|
||||
</resources>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>templating-maven-plugin</artifactId>
|
||||
<version>1.0.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>filter-src</id>
|
||||
<goals>
|
||||
<goal>filter-sources</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<dependencies>
|
||||
<!-- Common Module -->
|
||||
<dependency>
|
||||
<groupId>us.myles</groupId>
|
||||
<artifactId>viaversion-common</artifactId>
|
||||
<version>${project.parent.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
BIN
fabric/src/main/resources/assets/viaversion/textures/squarelogo.png
Normale Datei
BIN
fabric/src/main/resources/assets/viaversion/textures/squarelogo.png
Normale Datei
Binäre Datei nicht angezeigt.
Nachher Breite: | Höhe: | Größe: 15 KiB |
28
fabric/src/main/resources/fabric.mod.json
Normale Datei
28
fabric/src/main/resources/fabric.mod.json
Normale Datei
@ -0,0 +1,28 @@
|
||||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "viaversion",
|
||||
"name": "ViaVersion API",
|
||||
"version": "${project.version}",
|
||||
"description": "${project.description}",
|
||||
"license": "MIT",
|
||||
"contact": {
|
||||
"homepage": "https://viaversion.com/",
|
||||
"issues": "https://github.com/ViaVersion/ViaVersion/issues",
|
||||
"sources": "https://github.com/ViaVersion/ViaVersion"
|
||||
},
|
||||
"icon": "assets/viaversion/textures/squarelogo.png",
|
||||
"environment": "*",
|
||||
"authors": [
|
||||
"_MylesC",
|
||||
"Matsv"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.4.0"
|
||||
},
|
||||
"recommends": {
|
||||
"viafabric": ">=0.2.0-SNAPSHOT"
|
||||
},
|
||||
"custom": {
|
||||
"modmenu:api": true
|
||||
}
|
||||
}
|
@ -101,6 +101,11 @@
|
||||
<artifactId>viaversion-bungee</artifactId>
|
||||
<version>${project.parent.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>us.myles</groupId>
|
||||
<artifactId>viaversion-fabric</artifactId>
|
||||
<version>${project.parent.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>us.myles</groupId>
|
||||
<artifactId>viaversion-sponge</artifactId>
|
||||
|
1
pom.xml
1
pom.xml
@ -19,6 +19,7 @@
|
||||
<module>common</module>
|
||||
<module>bukkit</module>
|
||||
<module>bungee</module>
|
||||
<module>fabric</module>
|
||||
<module>sponge</module>
|
||||
<module>sponge-legacy</module>
|
||||
<module>velocity</module>
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren