- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在构建Android应用程序的子项目中,我试图根据根build.gradle中的变量设置版本代码/名称。
子项目build.gradle
:
apply plugin: 'com.android.application'
repositories {
google()
mavenCentral()
jcenter()
}
android {
compileSdkVersion 24
// current atak build tools version"
buildToolsVersion "28.0.3"
defaultConfig {
multiDexEnabled true
versionCode project.commit_head_count
versionName project.full_version
}
lintOptions {
abortOnError false
}
}
// set the build info prior to building
build.dependsOn rootProject.setBuildInfo
// gathers git / build information and dumps it to VERSION files to be read by web app and data analysis program
task setBuildInfo() {
doLast {
// read the core version file and store in variable
def coreVersionFile = new File("$projectDir/VERSION.txt")
def coreVersion = coreVersionFile.readLines().get(0)
// get the git hash value (short)
def getShortGitHashCmd = "git rev-parse --short HEAD"
def getShortGitHashProcess = getShortGitHashCmd.execute()
// get the count of commits on this branch at HEAD
def getCommitCountCmd = "git rev-list HEAD --count"
def getCommitCountProcess = getCommitCountCmd.execute()
ext.commit_head_count = getCommitCountProcess.text.trim()
ext.git_hash = getShortGitHashProcess.text.trim()
ext.full_version = "$coreVersion.$ext.commit_head_count"
ext.build_date = new Date().format('yyyy-MM-dd HH:mm:ss')
// assigns the full_version for global use in other task
// https://stackoverflow.com/a/29597784/680268
project.ext.$full_version = ext.full_version
project.ext.$commit_head_count = ext.commit_head_count
def fileContent =
"Short Version:$coreVersion\n" +
"Long Version:$ext.full_version\n" +
"Git hash:$ext.git_hash\n" +
"Commit count:$ext.commit_head_count\n" +
"Build date:$ext.build_date\n"
print fileContent
}
}
// set the build info prior to building
compileJava.dependsOn setBuildInfo
commit_head_count
变量指的是什么。我觉得如果我真的可以让
setBuildInfo
首先运行,它将可以工作,但不能正常工作
最佳答案
当执行某些其他任务时,请使用以下代码片段执行您的自定义任务:
tasks.matching { it.name == 'name of dependent task (i.e build)' }.all { Task task ->
task.dependsOn setBuildInfo
}
project.afterEvaluate {
print("This line prints every single time")
}
关于android - 在根项目的gradle子项目中设置Android版本代码/名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57907317/
我正在开发几个不同的 Joomla 附加组件,但希望将它们保留为单独的 git 存储库,因为它们有不同的开发团队(甚至组织)。但是,我也想将它们作为共享相同 Joomla 基础(被 .gitignor
最近,由于行销人员的要求,我已将Optimobile SDK添加到我正在工作的项目中。 在将其添加并在设备上安装新的apk之后。我注意到,我的应用程序中添加了两个新权限,即无需用户交互即可发送SMS的
我遇到了gradle plugin帮助我处理带点的属性名称。像这样使用时,它在单个项目中工作正常: apply plugin: 'config' buildscript { repositor
我很难设置一组相互依赖的相关 Maven 项目。 这是我的简化案例: pom.xml -- parent pom \base\ pom.xml src\main\java\Ba
我正在研究 Apache Ant 项目的发展,以使用 Gradle 对其进行编译,并且我有不同的子项目集。 我的目标是将主项目的输出用作某些子项目的依赖项。全局配置如下: MainProject:
对于每个用户帐户,我尝试计算他们今天有多少个事件。 我的数据结构如下: accounts - { "-KaxcGWx1-a8s7dhsjhsd" : { "name" : "Bill", "ev
我有两个项目: workspace Project1 |--build.gradle |--settings.gradle |--Subproject1 | |--build.
我们有一个 Maven 多模块项目,我们希望逐步迁移到一个 gradle 项目。 对于初学者,我只想将几个子项目迁移到 gradle,但将它们作为子项目保留到父 maven-project 构建。 有
我的 gradle 项目结构如下所示: geode-core geode-lucene extensions/geode-modules extensions/geode-modules-sessio
我有一个基于 CMake 的项目,具有以下“设计”: add_subdirectory(first_lib) add_subdirectory(second_lib) add_subdirectory
我创建了一个表单,其中有 2 个部分,一个是标题(父级),另一个是子级。在标题部分,我创建了一个字段,如项目(下拉),如 netsuite、SFDC 等,在子部分,我创建了另一个字段,如子项目。当我根
我正在创建一个新的应用程序 MyApp,我决定将应用程序的某些部分放在一个单独的框架 MyFramework 中,而不是应用程序本身,以使其可重用在其他项目中。该框架有自己的项目 (MyFramewo
想象一个包含多个组件的整体项目: 基本 我 网络 app-a app-b app-c 现在,假设 web 依赖于依赖于 basic 的 io,所有这些东西都在一个 repo 中,并且有一个 CMake
我有一个 SBT 项目,特别是 Play Framework 2.1 项目,它在配置中指定了许多子项目。编译时依赖项似乎工作正常,但“清理”似乎只清理当前选定的项目,不包括其依赖项。有什么方法可以清理
我有一个工作的多模块 Play 2.2 应用程序,它的组织方式是这样的...... myApp + app + conf + project + build.propertie
我无法理解模块和子项目之间的区别。有什么区别,哪个应该用于模块应用程序。 最佳答案 使用这两种方法,您都可以单独编译、运行和测试代码。 使用子项目,您可以共享设置,并且它通过源代码连接到依赖它的项目:
我有一个使用 Scala 2.10 的项目和一个使用 Scala 2.11 的项目。它们依赖于一个可以同时编译的通用项目。 lazy val foo = (project in file("foo")
如何让 gradle 克隆一个 git 存储库(到当前存储库的子存储库)并将其构建为子项目? 目前我有以下内容: settings.gradle: include 'contrib/dependenc
我在我的 gradle 项目中添加了一个子项目,现在每当我执行目标 check ,它还在我的子项目上运行测试。 我希望我可以运行 check - 主项目上的任务,将其指定为绝对任务 gradle :c
假设您有 2 个 gradle 项目。第一个是一个包含 2 个 java 子项目的多项目: rootProject :my:subProject1 :myother:subProjec
我是一名优秀的程序员,十分优秀!