Moved core to main
This commit is contained in:
parent
643052aa89
commit
2ac2d909cb
564 changed files with 23 additions and 84 deletions
16
bclib.gradle
16
bclib.gradle
|
@ -24,6 +24,22 @@ repositories {
|
|||
maven { url 'https://maven.terraformersmc.com/releases' }
|
||||
}
|
||||
|
||||
archivesBaseName = project.archives_base_name
|
||||
version = project.mod_version
|
||||
|
||||
loom {
|
||||
accessWidenerPath = file("src/main/resources/bclib.accesswidener")
|
||||
}
|
||||
|
||||
moduleDependencies(project, ["together-v1"])
|
||||
repositories {
|
||||
maven { url 'https://maven.terraformersmc.com/releases' }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
modCompileOnly "com.terraformersmc:modmenu:${project.modmenu_version}"
|
||||
}
|
||||
|
||||
allprojects {
|
||||
group = project.maven_group
|
||||
apply plugin: "java-library"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
plugins {
|
||||
id 'idea'
|
||||
id 'eclipse'
|
||||
id 'fabric-loom' version "${loom_version}" apply false
|
||||
id 'fabric-loom' version "${loom_version}"
|
||||
id 'maven-publish'
|
||||
}
|
||||
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
archivesBaseName = "core-v1"
|
||||
version = getSubprojectVersion(project)
|
||||
|
||||
loom {
|
||||
accessWidenerPath = file("src/main/resources/bclib.accesswidener")
|
||||
}
|
||||
|
||||
moduleDependencies(project, ["together-v1"])
|
||||
//compileOnlyDependencies(project, [
|
||||
// "com.terraformersmc:modmenu:${project.modmenu_version}"
|
||||
//])
|
||||
|
||||
repositories {
|
||||
maven { url 'https://maven.terraformersmc.com/releases' }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
modCompileOnly "com.terraformersmc:modmenu:${project.modmenu_version}"
|
||||
}
|
||||
|
||||
jar {
|
||||
from "../LICENSE"
|
||||
}
|
|
@ -1,2 +0,0 @@
|
|||
# Dependencies
|
||||
modmenu_version=4.0.0
|
Binary file not shown.
Before Width: | Height: | Size: 10 KiB |
Binary file not shown.
Before Width: | Height: | Size: 8.6 KiB |
|
@ -1,54 +0,0 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "bclib",
|
||||
"version": "2.0.10",
|
||||
"name": "BCLib",
|
||||
"description": "A library for BetterX team mods",
|
||||
"authors": [
|
||||
"Quiqueck",
|
||||
"paulevs",
|
||||
"Bulldog83"
|
||||
],
|
||||
"contact": {
|
||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/bclib",
|
||||
"issues": "https://github.com/quiqueck/bclib/issues",
|
||||
"sources": "https://github.com/quiqueck/bclib"
|
||||
},
|
||||
"license": "MIT",
|
||||
"icon": "assets/bclib/icon.png",
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"main": [
|
||||
"org.betterx.bclib.BCLib"
|
||||
],
|
||||
"client": [
|
||||
"org.betterx.bclib.client.BCLibClient"
|
||||
],
|
||||
"server": [
|
||||
"org.betterx.bclib.server.BCLibServer"
|
||||
],
|
||||
"modmenu": [
|
||||
"org.betterx.bclib.integration.modmenu.ModMenuEntryPoint"
|
||||
],
|
||||
"worlds_together": [
|
||||
"org.betterx.bclib.registry.PresetsRegistry"
|
||||
]
|
||||
},
|
||||
"accessWidener": "bclib.accesswidener",
|
||||
"mixins": [
|
||||
"bclib.mixins.common.json",
|
||||
"bclib.mixins.client.json"
|
||||
],
|
||||
"depends": {
|
||||
"fabricloader": ">=0.14.6",
|
||||
"fabric": ">=0.56.0",
|
||||
"minecraft": "1.19"
|
||||
},
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
"links": {
|
||||
"title.link.bclib.discord": "https://discord.gg/kYuATbYbKW"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -13,3 +13,5 @@ core-v1-version=2.0.10
|
|||
together-v1-version=2.0.10
|
||||
maven_group=org.betterx.bclib
|
||||
archives_base_name=bclib
|
||||
# Dependencies
|
||||
modmenu_version=4.0.0
|
|
@ -11,4 +11,3 @@ pluginManagement {
|
|||
|
||||
|
||||
include("together-v1")
|
||||
include("core-v1")
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue