我想从mavencentral使用我的lib的主版本。
是否可以在android gradle中将git repository声明为依赖?
答案 0 :(得分:32)
或者您可以将存储库注册为像这样的子模块
$ git submodule add my_sub_project_git_url my-sub-project
然后在settings.gradle文件中包含项目,该文件应该如下所示
include ':my-app', ':my-sub-project'
最后,将项目编译为应用程序build.gradle文件中的依赖项,如下所示
dependencies {
compile project(':my-sub-project')
}
然后,在克隆项目时,您只需要添加选项--recursive
以使git自动克隆根存储库及其所有子模块。
git clone --recursive my_sub_project_git_url
我希望它有所帮助。
答案 1 :(得分:6)
我不认为gradle支持添加git repo作为依赖。 我的解决方法是:
我假设您希望库repo位于主项目仓库的文件夹之外,因此每个项目都是独立的git repos,您可以独立地提交到库和主项目git repos。
假设您希望将库项目的文件夹放在与主项目文件夹相同的文件夹中,
你可以:
在顶级settings.gradle中,将库存储库声明为项目,并给出它在文件系统中的位置
// Reference: https://looksok.wordpress.com/2014/07/12/compile-gradle-project-with-another-project-as-a-dependency/
include ':lib_project'
project( ':lib_project' ).projectDir = new File(settingsDir, '../library' )
使用gradle-git plugin从git存储库中克隆库
import org.ajoberstar.gradle.git.tasks.*
buildscript {
repositories { mavenCentral() }
dependencies { classpath 'org.ajoberstar:gradle-git:0.2.3' }
}
task cloneLibraryGitRepo(type: GitClone) {
def destination = file("../library")
uri = "https://github.com/blabla/library.git"
destinationPath = destination
bare = false
enabled = !destination.exists() //to clone only once
}
在项目的依赖项中,假设项目的代码取决于git项目的文件夹
dependencies {
compile project(':lib_project')
}
答案 2 :(得分:5)
我发现最接近的是https://github.com/bat-cha/gradle-plugin-git-dependencies,但是我无法使用android插件,即使在加载了git repos之后仍然试图从maven中拉出来。
答案 3 :(得分:1)
gradle中现在有一项新功能,可让您从git添加源依赖项。
您首先需要在settings.gradle
文件中定义存储库,并将其映射到模块标识符:
sourceControl {
gitRepository("https://github.com/gradle/native-samples-cpp-library.git") {
producesModule("org.gradle.cpp-samples:utilities")
}
}
现在,在您的build.gradle
中,您可以指向特定标签(例如:“ v1.0”):
dependencies {
...
implementation 'org.gradle.cpp-samples:utilities:v1.0'
}
或到特定分支:
dependencies {
...
implementation('org.gradle.cpp-samples:utilities') {
version {
branch = 'release'
}
}
}
注意事项:
参考:
答案 4 :(得分:0)
@Mister Smith 的 answer 几乎对我有用,唯一的区别是不是将存储库 URI 作为 String
传递,而是需要是 URI
,即:
sourceControl {
gitRepository(new URI("https://github.com/gradle/native-samples-cpp-library.git")) {
producesModule("org.gradle.cpp-samples:utilities")
}
}
我使用的是 Gradle 6.8。