当前位置: 首页 > 知识库问答 >
问题:

Gradle不创建库(minecraft forge mdk)

贺玉石
2023-03-14

我下载了forge-1.15.1-30.0.41-mdk,将该文件解压缩到我的mod文件夹中,并将其作为“现有gradle项目”导入eclipse。

现在我的问题是:Gradle没有用网络创建一个库。地雷艇。*和网。minecraftforge。*包装。因此,我无法将任何内容导入到我的代码中。

当我尝试导入时,控制台上的输出:

`https://pastebin.com/7ushke8k`

build.gradle:

buildscript {
repositories {
    maven { url = 'https://files.minecraftforge.net/maven' }
    jcenter()
    mavenCentral()
}
dependencies {
    classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true
}
}
apply plugin: 'net.minecraftforge.gradle'
// Only edit below this line, the above code adds and enables the necessary things for Forge to be setup.
apply plugin: 'eclipse'
apply plugin: 'maven-publish'

version = '1.0'
group = 'com.yourname.modid' // http://maven.apache.org/guides/mini/guide-naming-conventions.html
archivesBaseName = 'modid'

sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8' // Need this here so eclipse task generates correctly.

minecraft {
// The mappings can be changed at any time, and must be in the following format.
// snapshot_YYYYMMDD   Snapshot are built nightly.
// stable_#            Stables are built at the discretion of the MCP team.
// Use non-default mappings at your own risk. they may not always work.
// Simply re-run your setup task after changing the mappings to update your workspace.
mappings channel: 'snapshot', version: '20190719-1.14.3'
// makeObfSourceJar = false // an Srg named sources jar is made by default. uncomment this to disable.

// accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')

// Default run configurations.
// These can be tweaked, removed, or duplicated as needed.
runs {
    client {
        workingDirectory project.file('run')

        // Recommended logging data for a userdev environment
        property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'

        // Recommended logging level for the console
        property 'forge.logging.console.level', 'debug'

        mods {
            examplemod {
                source sourceSets.main
            }
        }
    }

    server {
        workingDirectory project.file('run')

        // Recommended logging data for a userdev environment
        property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'

        // Recommended logging level for the console
        property 'forge.logging.console.level', 'debug'

        mods {
            examplemod {
                source sourceSets.main
            }
        }
    }

    data {
        workingDirectory project.file('run')

        // Recommended logging data for a userdev environment
        property 'forge.logging.markers', 'SCAN,REGISTRIES,REGISTRYDUMP'

        // Recommended logging level for the console
        property 'forge.logging.console.level', 'debug'

        args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/')

        mods {
            examplemod {
                source sourceSets.main
            }
        }
    }
}
}

dependencies {
// Specify the version of Minecraft to use, If this is any group other then 'net.minecraft' it is assumed
// that the dep is a ForgeGradle 'patcher' dependency. And it's patches will be applied.
// The userdev artifact is a special name and will get all sorts of transformations applied to it.
minecraft 'net.minecraftforge:forge:1.15.1-30.0.41'

// You may put jars on which you depend on in ./libs or you may define them like so..
// compile "some.group:artifact:version:classifier"
// compile "some.group:artifact:version"

// Real examples
// compile 'com.mod-buildcraft:buildcraft:6.0.8:dev'  // adds buildcraft to the dev env
// compile 'com.googlecode.efficient-java-matrix-library:ejml:0.24' // adds ejml to the dev env

// The 'provided' configuration is for optional dependencies that exist at compile-time but might not at runtime.
// provided 'com.mod-buildcraft:buildcraft:6.0.8:dev'

// These dependencies get remapped to your current MCP mappings
// deobf 'com.mod-buildcraft:buildcraft:6.0.8:dev'

// For more info...
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html

}

// Example for how to get properties into the manifest for reading by the runtime..
jar {
manifest {
    attributes([
        "Specification-Title": "examplemod",
        "Specification-Vendor": "examplemodsareus",
        "Specification-Version": "1", // We are version 1 of ourselves
        "Implementation-Title": project.name,
        "Implementation-Version": "${version}",
        "Implementation-Vendor" :"examplemodsareus",
        "Implementation-Timestamp": new Date().format("yyyy-MM-dd'T'HH:mm:ssZ")
    ])
}
}

// Example configuration to allow publishing using the maven-publish task
// we define a custom artifact that is sourced from the reobfJar output task
// and then declare that to be published
// Note you'll need to add a repository here
def reobfFile = file("$buildDir/reobfJar/output.jar")
def reobfArtifact = artifacts.add('default', reobfFile) {
type 'jar'
builtBy 'reobfJar'
}
publishing {
publications {
    mavenJava(MavenPublication) {
        artifact reobfArtifact
    }
}
repositories {
    maven {
        url "file:///${project.projectDir}/mcmodsrepo"
    }
}
}

共有1个答案

柴亦
2023-03-14

以下是我的解决方案:您必须在导入项目时手动声明JavaHome。在那里我看到了它: 1

 类似资料:
  • Webpack can be handy for packaging your library for general consumption. You can use it to output UMD, a format that's compatible with various module loaders (CommonJS, AMD) and globals. Webpack 可以非常方

  • 我还有另一个带有SDK依赖项的lib(一个插件,假设模块B) 所以在我的项目中,有三个模块:SDK(A)、demoApp和插件(B) 现在我需要在jar文件中分发我的SDK和/或插件,以便人们可以在他们的项目中使用它 编辑:为了澄清,我加了一封信 我需要一个用于的jar文件 B需要A才能运行(依赖项) 我需要一个用于b的jar文件

  • 主要内容:一、什么是仓库?,二、如何创建仓库?一、什么是仓库? svn是联合开发系统的工具,svn仓库中存放所编写的程序,每个版本都有,大家可以一起更新仓库,但如果你觉得这个版本不如上个版本,你可以直接提取上个版本,每个版本都可以提取。 二、如何创建仓库? SVN服务端安装完成后需要创建仓库,仓库中存放要版本控制的文件。 通过开始菜单进入VisualSVN server manager:       创建一个空的仓库: 设置用户访问仓库权限:

  • 创建应用程序模块 操作步骤: 第1步:菜单栏: File —> New —> New Module 然后弹出创建模块界面 Android Studio中支持这么多种模块类型,我们要新建的模块类型为应用程序,因此要选择 【Phone & Table Module】. 第2步: 选择[Phone & Table Module] —> Next —> 配置新的模块 第3步: Next —> 选择一个Ac

  • 当我们使用 “类库” 这个词的时候,通常我们指的是位于 libraries 这个目录下的那些类, 在我们这份用户手册的类库参考部分有详细的介绍。但是在这篇文章中,我们将介绍 如何在 application/libraries 目录下创建你自己的类库,和全局的框架类库独立开来。 另外,如果你希望在现有的类库中添加某些额外功能,CodeIgniter 允许你扩展原生的类, 或者你甚至可以在你的 app

  • 我想使用Eclipse和Gradle来构建POJO。我安装了Eclipse STS插件,正如Gradle教程中强调的那样。我使用文件创建带有Eclipse的Gradle项目