Gradle:创建一个具有依赖项的JAR

问题描述 投票:0回答:1

我从一个项目开始就将我们产品的构建从Ant迁移到Gradle,并出现以下错误:

> Could not resolve all files for configuration ':Shared:serverbase:compileClasspath'.
   > Could not find guava:guava:23.3-jre.
     Searched in the following locations:
       - https://jcenter.bintray.com/guava/guava/23.3-jre/guava-23.3-jre.pom
       - file:/F:/pros/X/java/guava/guava-23.3-jre.xml
     Required by:
         project :Shared:serverbase

为什么要查找xml文件而不是jar

以下是我的文件:项目根目录中的build.gradle:

buildscript {
    repositories {
        jcenter()
        maven {
            url "https://plugins.gradle.org/m2/"
        }
    }
    dependencies {
        classpath 'de.richsource.gradle.plugins:gwt-gradle-plugin:0.6' // gwt compiler plugin
    }
}

allprojects {

    apply from: rootProject.file('libraries.gradle')
    repositories {
        jcenter()
        ivy {
            url  "file://${rootProject.projectDir}/ThirdParty/java/"
            patternLayout  {
                artifact "[organization]/[module](-[revision])(.[ext])"
            }
        }
    }
}

subprojects {
    apply plugin: 'java-library'

    sourceCompatibility = '1.8'
    targetCompatibility = '1.8'


    compileJava.options.debugOptions.debugLevel = "lines,vars,source"
    compileJava.options.compilerArgs += ["-nowarn"]
    compileJava.options.debug = true
}

此单个项目的build.gradle:

sourceSets.main.java.srcDirs = ['src']

dependencies {
    implementation "guava:guava:${guavaVersion}"
    implementation "slf4j:jul-to-slf4j:${slf4jVersion}"
    implementation "logback:logback-classic:${logbackVersion}"

}

jar {
    manifest {
        attributes 'Class-Path': configurations.compileClasspath.collect { it.getName() }.join(' ')
    }        

}

settings.gradle:

rootProject.name = 'X'
include 'Shared:serverbase'

libraries.gradle:

ext {
...
    guavaVersion = '23.3-jre'
...
}

(删除了某些内容)

并且如果我将文件依赖性添加到build.gradle作为本地文件(How to add local .jar file dependency to build.gradle file?

implementation files("guava-${guavaVersion}.jar")

我遇到了很多错误,例如'错误:包org.slf4j不存在',所以似乎根本不满足依赖项。结果应该是包含已编译源代码的单个jar。

我是新手,请原谅我的启示。

java gradle build ant
1个回答
0
投票
您对番石榴的依赖性不正确。
© www.soinside.com 2019 - 2024. All rights reserved.