- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我最初的目标是能够使用 buildscript
中定义的类路径依赖项在 build.gradle
, 在导入到 build.gradle
的脚本中使用 apply from:
.但是,由于无法解析类,因此外部脚本无法编译。研究这个问题后,我发现逻辑需要复制,所以我想我会提取buildscript
到一个单独的文件中。然后我就可以在 build.gradle
中应用它并且也在外部脚本内部。
我什至没有成功应用来自 build.gradle
的外部构建脚本文件,更不用说从外部脚本应用它了。我尝试了多种方法,但无论我尝试什么,似乎总是以两个问题之一结束:来自 gradle.properties
的属性之一。无法使用,或者找不到插件(即使已经定义了类路径依赖项)。
目前我的 gradle/buildscript.gradle
文件如下所示:
buildscript {
repositories {
maven { url "http://some.url.com" }
}
dependencies {
classpath "my.gradle.plugin:gradle-plugin:1.0.0"
classpath "my.library:my-library:$libraryVersion"
}
}
libraryVersion
已在
gradle.properties
中定义.我的
build.gradle
如下:
buildscript {
apply from: "gradle/buildscript.gradle"
}
apply plugin: 'my.gradle.plugin.PluginClass'
my.gradle.plugin.PluginClass
的插件.我尝试删除引号,我也尝试
project.plugin.apply(...)
使用带引号和不带引号的插件的 FQN;这两种情况都会导致 gradle 出错,并显示一条消息说它找不到属性
my
在根项目上。
buildscript {
apply from: "gradle/buildscript.gradle", to: buildscript
}
apply plugin: 'my.gradle.PluginClass'
libraryVersion
在
gradle/buildscript.gradle
.所以我然后尝试了这个:
buildscript {
ext.libraryVersion = "1.0.1"
repositories {
maven { url "http://some.url.com" }
}
dependencies {
classpath "my.gradle.plugin:gradle-plugin:1.0.0"
classpath "my.library:my-library:$libraryVersion"
}
}
ext
在
buildscript
.我明白这是因为现在确实没有“项目”可言,因为
buildscript
单独编译。然后我换了我的
buildscript
阻止
build.gradle
回到:
buildscript {
apply from: "gradle/buildscript.gradle"
}
ext
错误,但我仍然收到错误消息,说它找不到具有指定 ID 的插件。
libraryVersion
内
buildscript
,因为我需要它作为
build.gradle
中的编译时依赖项我宁愿不必在两个地方维护它。
buildscript
block 本身在
build.gradle
中工作正常:
buildscript {
ext.libraryVersion = "1.0.1"
repositories {
maven { url "http://some.url.com" }
}
dependencies {
classpath "my.gradle.plugin:gradle-plugin:1.0.0"
classpath "my.library:my-library:$libraryVersion"
}
}
apply plugin: 'my-plugin-id' //No need to use FQN
dependencies {
compile "my.library:library-version:$libraryVersion"
}
buildscript
的原因阻塞是因为我有一个文件
other.gradle
有一些使用来自
my.library
的类的自定义任务:
import my.library.SomeThing
task customTask(type: DefaultTask) {
//does something with SomeThing
}
buildscript
阻止
build.gradle
并像这样应用另一个文件:
buildscript {
ext.libraryVersion = "1.0.1"
repositories {
maven { url "http://some.url.com" }
}
dependencies {
classpath "my.gradle.plugin:gradle-plugin:1.0.0"
classpath "my.library:my-library:$libraryVersion"
}
}
apply plugin: 'my-plugin-id' //No need to use FQN
dependencies {
compile "my.library:my-library:$libraryVersion"
}
apply from: 'gradle/other.gradle'
my.library.SomeThing
.我想我可以解决这个问题并通过使用一个通用的
buildscript
来避免重复。然后我可以在
build.gradle
中应用的文件和
other.gradle
.
buildSrc
里面创建了一个自定义插件以我想要的方式配置项目,结果却以更复杂的方式失败并导致相同的结果。根本原因是相同的:无法将类路径依赖项暴露给外部脚本。
buildscript
正在使用的 block
build.gradle
当我将它移动到另一个文件时“正常工作”。
apply
的语义关于
buildscript
block 不清楚。另外,
buildscript
的语义当它出现在外部文件中时,它本身也不清楚 - 行为有明显的变化,特别是在插件和外部属性方面。
最佳答案
这有点啰嗦,但也有解决方案。我能够在不使用单独的 buildscript
的情况下解决此问题文件,但解决方法是令人难以置信的hackish。我认为您无法跨外部脚本共享 buildscript 依赖项是一个主要缺点。
问题是没有语义一致性,因为行为似乎取决于您决定如何组织/模块化您的构建逻辑。如果这是一个已知问题,则需要在文档中的某个地方特别指出 - 我能够找到提到这种令人惊讶的行为的唯一方法是来自 gradle 自己的论坛或 StackOverflow。我不认为期望在单个文件中与离散的构建逻辑单元一起工作的构建在这些离散单元被拆分到多个文件时也能工作是不合理的。只要语义一致,构建逻辑不应因您决定组织文件的方式而异。
我知道可能存在技术限制,但是仅仅因为您将逻辑从一个文件移动到另一个文件而导致构建中断是抽象泄漏,因为现在我需要知道这样做的细节和复杂性,超出了人们应该合理预期的范围.我什至不介意这是否被明确和特别地提出,以及解决语义差异的解决方案/变通办法。但是,当前有关组织构建逻辑的文档没有提到这些警告;它只记录了幸福的道路。
/咆哮
所以这是解决方案。我通过使用扩展保存了对类本身的引用:
import my.library.SomeThing
import my.library.SomeOtherThing
buildscript {
ext.libraryVersion = "1.0.1"
repositories {
maven { url "http://some.url.com" }
}
dependencies {
classpath "my.gradle.plugin:gradle-plugin:1.0.0"
classpath "my.library:my-library:$libraryVersion"
}
}
apply plugin: 'my-plugin-id' //No need to use FQN
ext.SomeThing = SomeThing
ext.SomeOtherThing = SomeOtherThing
dependencies {
compile "my.library:my-library:$libraryVersion"
}
apply from: 'gradle/other.gradle'
other.gradle
:
// Necessary; you can't just use ext.SomeThing in the task later because
// it is available at compile-time, but apparently not at runtime. Although
// it does work if you use project.ext.SomeThing. However, I just found this
// to be more convenient.
def SomeThing = ext.SomeThing
def SomeOtherThing = ext.SomeOtherThing
task someTask(type: DefaultTask) {
// You have to use def; you cannot use the actual type because
// it is not available at compile-time. Also, since you only
// have a class object, you cannot use "new" directly; you have to
// create a new instance by calling newInstance() on the class object
def someThing = SomeThing.newInstance(...)
// If you are calling static methods you can invoke them directly
// on the class object. Again, you have to use def if the return
// type is something defined within my-library.
def foo = SomeOtherThing.staticMethod(...)
}
关于java - 访问在应用的外部脚本中的 buildscript block 中定义的类路径依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37058780/
BufferedImage image = ImageIO.read(SpriteSheet.class.getResource(path)); BufferedImage image = Image
希望有人能够帮助我解决将我的 React 应用程序推送到 Heroku 时遇到的问题。 heroku 日志反复显示以下错误。 at=error code=H10 desc="App crashed"
我是 Kotlin 的新手,我正在经历这样的例子。 . . package com.example.lambda1 import spark.Spark.get fun main(args: Arra
如果您已经安装了 32 位 JDK,请在中定义一个 JAVA_HOME 变量 Computer>System Properties>System Setting>Enviorment VAriable
我正在开发一个独立于平台的应用程序。我收到一个文件 URL*。在 Windows 上,这些是: file:///Z:/folder%20to%20file/file.txt file://host/f
我在 OSX、Objective-C 上。 我有一个像 这样的路径/NSURL /Users/xxx/Desktop/image2.png 但我将它传递给第三方应用程序,该应用程序会像 excpect
我已经安装了 Android studio 和插件的 DART,FLUTTER 来启动 flutter,但是因为我在创建我的第一个 flutter 项目时无法提供 sdk 路径。 最佳答案 我试图找出
127.0.0.1:8000/api/仅包含来自第二个应用程序的 url,但我将两个 url 模块链接到相同的模式。甚至有可能做到这一点吗? 第一个应用程序: from django.urls imp
对于大量图像(大约 1k,加上相同数量的拇指,在大约 500 个文件夹中),我们要求网站上使用的所有图像 URI 都必须具有 SEO 优化路径。它们已经准备好并提供完整的路径结构(每个文件夹包含一个具
为什么 f 不是一个文件?什么可能导致这种情况? String currentPhotoPath = "file:/storage/sdcard0/Pictures/someFileName.
Gradle 中的项目名称或路径中允许使用哪些字符? 它是否与特定操作系统的目录名称中允许的字符相同(例如: http://en.wikipedia.org/wiki/Filename#Reserve
我有一个包含文件夹路径的表格。我需要找到层次结构中这些文件夹之间的所有“差距”。我的意思是,如果表格包含这 3 个文件夹: 'A' 'A\B\C' 'A\B\C\D\E\F\G' 我需要在层次结构中找
我在 Linux 服务器上的/home/subversion 中安装了 svn - 那里有一个 ROOT 文件夹,其中包含 db 和 conf 等文件夹。没有映射到项目名称的文件夹,请有人告诉我如何列
对于我的图像位置:/src/assets/bitmap/sample.jpg 给出了关键配置: context: resolve('src') output: { path: resolve('b
我需要创建带有圆角的 SVG 路径,以将它们导出到 DXF 进行切割。我的问题是角应该是圆弧,而不是贝塞尔曲线。 使用 arc 命令相对容易处理直角,因为半径也是从拐角到圆弧起点的距离。对于其他角度,
大家好,我正在玩 Airflow,我正在阅读这篇很有帮助的 tutorial .我正在寻求帮助以更好地了解 Admin->Connection 如何在 Conn Type: File (path) 方
我的目标是定义R将用于安装和搜索库的单个路径。我read可以通过更改Rprofile.site安装路径中的R文件来完成。我在那里尝试了两个命令: .libPaths("D:/RLibrary") .L
我有一个问题:当我在一个页面中时,我想返回到上一页。我使用 $routeProvider。如何读取之前的 url? 我尝试在我的 Controller 中使用此代码但不起作用... angular.m
我正在尝试将一个文件从我的主干合并到一个分支(wc),并且对于看起来位于当前合并操作中不涉及的分支上的路径出现奇怪的未找到路径错误。 例如,在我们的 svn 项目中,我们有: 分行 分支 0 分支 1
我有一个树数据序列化如下: 关系:P到C是“一对多”,C到P是“一对一”。所以列 P 可能有重复的值,但列 C 有唯一的值。 P, C 1, 2 1, 3 3, 4 2, 5 4, 6 # in da
我是一名优秀的程序员,十分优秀!