- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 buildSrc
多模块 Kotlin 项目中的模块到 manage dependency definitions and versions .该模块使用kotlin-dsl如build.gradle.kts所示:
plugins {
`kotlin-dsl`
}
plugins {
id("org.gradle.kotlin.kotlin-dsl") version "0.16.2"
}
buildSrc
模块以及应用程序模块内。我的第一次尝试是简单地添加 JVM 工件:
plugins {
`kotlin-dsl`
kotlin("jvm") version "1.2.31"
}
Error resolving plugin [id: 'org.jetbrains.kotlin.jvm', version: '1.2.31']
Plugin request for plugin already on the classpath must not include a version
最佳答案
Each Gradle release is meant to be used with a specific version of the
kotlin-dsl
plugin and compatibility between arbitrary Gradle releases andkotlin-dsl
plugin versions is not guaranteed.Using an unexpected version of the
kotlin-dsl
plugin in a build can cause hard to diagnose problems.Starting with Gradle 5.4, a warning is emitted whenever an unexpected version of the
kotlin-dsl
plugin is detected.
version
:
plugins {
`kotlin-dsl`
}
repositories {
mavenCentral()
}
关于gradle - 如何为 buildSrc 和应用程序模块定义 Kotlin 版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49522180/
我有一个包含几个模块的程序,比如:moduleA、moduleB 和 moduleC。 而且我还有一个头文件 debug_flags.h 我在其中定义了三个宏: #define DEBUG_MODUL
我是一名优秀的程序员,十分优秀!