Gradle:找不到方法provideCompile() [英] Gradle: Could not find method providedCompile()

查看:2991
本文介绍了Gradle:找不到方法provideCompile()的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这个这个可以使用的编译文件 providedCompile
$ $ p $ th $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ gradleEAR $ gradle clean

失败:生成失败,出现异常。

*其中:
构建文件'/home/thufir/NetBeansProjects/gradleEAR/build.gradle'行:40

*出错:
评估根项目gradleEAR时发生问题。
>对于类型为org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler的对象上的参数[javax:javaee-api:7.0]找不到方法provideCompile()。

*尝试:
使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debug选项运行以获取更多日志输出。

构建失败

总时间:12.721秒
thufir @ doge:〜/ NetBeansProjects / gradleEAR $

插件{
'id'com.gradle.build-scan'version'1.8'
id'java'
id'application'
id'ear'
}

mainClassName ='net.bounceme.doge.json.Main'

buildScan {
licenseAgreementUrl ='https://gradle.com/terms-of-service'
licenseAgree ='是'
}

仓库{
jcenter()
}

jar {
清单{
属性'Main-Class':'net.bounceme.doge.json.Main'
}
}

任务fatJar(类型:Jar){
baseName = project.name +'-all'
from {configurations.compile.collect {it.isDirectory()?它:zipTree(it)}}
with jar
manifest {
attributes'Implementation-Title':'Gradle Quickstart','Implementation-Version':'3.4.0'
属性'Main-Class':'net.bounceme.doge.json.Main'
}
}

依赖关系{
编译组:'javax.json ',名称:'javax.json-api',版本:'1.1'
编译组:'org.glassfish',名称:'javax.json',版本:'1.1'
providesCompile'javax :javaee-api:7.0'
}

参考:



Gradle如何解决javaee-api依赖关系以构建EAR?

解决方案

providedCompile 随附 war pl乌金。所以你需要添加:

 插件{
// ...
id'war'
}


How are this and this build file able to use providedCompile?

thufir@doge:~/NetBeansProjects/gradleEAR$ 
thufir@doge:~/NetBeansProjects/gradleEAR$ gradle clean

FAILURE: Build failed with an exception.

* Where:
Build file '/home/thufir/NetBeansProjects/gradleEAR/build.gradle' line: 40

* What went wrong:
A problem occurred evaluating root project 'gradleEAR'.
> Could not find method providedCompile() for arguments [javax:javaee-api:7.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 12.721 secs
thufir@doge:~/NetBeansProjects/gradleEAR$ 

plugins {
    id 'com.gradle.build-scan' version '1.8' 
    id 'java'
    id 'application'
    id 'ear'
}

mainClassName = 'net.bounceme.doge.json.Main'

buildScan {
    licenseAgreementUrl = 'https://gradle.com/terms-of-service'
    licenseAgree = 'yes'
}

repositories {
    jcenter()
}

jar {
    manifest {
        attributes 'Main-Class': 'net.bounceme.doge.json.Main'
    }
}

task fatJar(type: Jar) {
    baseName = project.name + '-all'
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
    with jar
    manifest {
        attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': '3.4.0'
        attributes 'Main-Class': 'net.bounceme.doge.json.Main'
    }
}

dependencies {
    compile group: 'javax.json', name: 'javax.json-api', version: '1.1'
    compile group: 'org.glassfish', name: 'javax.json', version: '1.1'
    providedCompile 'javax:javaee-api:7.0'
}

In reference to:

How does Gradle resolve the javaee-api dependency to build an EAR?

解决方案

providedCompile is shipped with war plugin. So you need to add:

plugins {
  // ...
  id 'war'
}

这篇关于Gradle:找不到方法provideCompile()的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆