我最近遇到了一个问题,在windows上用intellij使用“java library”插件编译gradle4.0.1版本的java库(3.5版本也出现了这个问题)。以下是我的构建脚本的一个片段:
buildscript{
repositories{
jcenter();
}
dependencies{
classpath 'com.bmuschko:gradle-tomcat-plugin:2.2.5'
classpath 'org.akhikhl.gretty:gretty:+'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0'
}
}
configurations{
taglibs{ transitive = false}
enhance
}
repositories {
mavenCentral()
}
apply plugin: 'java-library'
apply plugin: 'war'
apply plugin: 'com.bmuschko.tomcat'
sourceCompatibility = 1.7
当我试图建立
生成失败
总时间:0.115秒
找不到id为“java library”的插件。
直到最近,这一切都很顺利。
1条答案
按热度按时间cotxawn71#
确保在intellij idea首选项中切换到gradle 4.0.1。
java-library
gradle 3.5没有插件