统一管理Git多仓库及模块依赖 / Manage multiple Git repositories and dependencies between modules.
用于统一管理Git多仓库及模块间的依赖关系。
settings.gradle和
build.gradle中添加gradle-repo插件。
buildscript { repositories { jcenter() } dependencies { classpath 'com.eastwood.tools.plugins:gradle-repo:1.2.0' } }apply plugin: 'gradle-repo'
Repo清单格式 / Repo Manifest Format
repo-local.xml可以理解为
本地模式。该模式下repo.xml声明的module将不会直接出现项目工程中,而是直接被移到
.idea/module中。也就是说只有repo-local.xml声明的module才会出现在项目工程中。
另外,你也可以通过设置
disableLocalRepo来禁用该模式,比如:
setting.gradle...
ext.disableLocalRepo = true
apply plugin: 'gradle-repo'
尽量清理掉settings.gradle中的
include。如果一些模块不想被Gradle Repo管理,当然可以继续使用。
分支切换尽量在根项目上操作,同步的时候,其他模块会自动跟随切换过去。如果有些模块是使用固定的分支,可以在声明中指定
branch
The following features are available:
Install Step:
1. open [File] -> [Settings...] -> [plugins] -> [Browse repositories...]
2. and search name
Gradle Repo
Plugin detail:
https://plugins.jetbrains.com/plugin/10876-gradle-repo
An SCM provider for Jenkins. Projects can use this plugin to only run builds when changes are detected in any of the git repositories in the repo manifest,
to list the changes between builds, and to re-create the project state across all repositories for any previous build using a static manifest.
Plugin detail: https://plugins.jenkins.io/gradle-repo
有问题或想法可以直接加我微信: EastWoodYang
Copyright 2018 EastWood YangLicensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.