A plugin to allow people using dynamic dependency versions to lock them to specific versions.
Some project teams may prefer to have their build.gradle dependencies reflect their ideal world. A latest.release for internal dependencies. A major.+, major.minor.+, or a range [2.0.0, 4.0.0). Many also want to lock to specific versions for day to day development, having a tagged version always resolve identically, and for published versions to have specific dependencies.
Inspired by Bundler
We are deprecating the old plugin name gradle-dependency-lock
/nebula.gradle-dependency-lock
in favor of dependency-lock
/nebula.dependency-lock
.
The old usage will be removed sometime after March next year. Until being switched we will print a logger.warn
level message indicating its deprecation.
To include, add the following to your build.gradle
If newer than gradle 2.1 you may use
plugins {
id 'nebula.dependency-lock' version '2.2.3'
}
or
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.netflix.nebula:gradle-dependency-lock-plugin:2.2.3'
}
}
apply plugin: 'nebula.dependency-lock' // or 'dependency-lock'
Command line overrides via -PdependencyLock.override
or -PdependencyLock.overrideFile
will apply.
- generateLock - Generate a lock file into the build directory. Any existing
dependency.lock
file will be ignored. - updateLock - Update dependencies from the lock file into the build directory. By default, this task does the same thing as the
generateLock
task. This task also exposes an option--dependencies
allowing the user to specify a comma-separated list, in the format<group>:<artifact>
, of dependencies to update. - saveLock - Copy the generated lock into the project directory.
- deleteLock - Delete the existing lock files
- generateGlobalLock - Generate a lock file into the build directory representing the global dependencies of the entire multiproject. Any existing
dependency.lock
orglobal.lock
will be ignored. - updateGlobalLock - Update dependencies from the lock file into the build directory. By default, this task does the same thing as the
generateGlobalLock
task. This task also exposes an option--dependencies
allowing the user to specify a comma-separated list, in the format<group>:<artifact>
, of dependencies to update. - saveGlobalLock - Copies the generated globalLock into the project directory
- deleteGlobalLock - Delete the
global.lock
file - commitLock - If a gradle-scm-plugin implementation is applied. Will commit dependencies.lock to the configured SCM. Exists only on the rootProject. Assumes scm root is at the same level as the root build.gradle.
- If a
global.lock
is found it will be used, ignoring alldependencies.lock
files. saveLock
will fail if you have aglobal.lock
-- You should rundeleteGlobalLock
saveGlobalLock
will fail if you have anydependencies.lock
files -- You should rundeleteLock
Revert to normal gradle behavior even with plugin applied.
./gradlew -PdependencyLock.ignore=true <tasks>
Generate lock:
./gradlew generateLock saveLock
./gradlew test
- if 2 passes
./gradlew commitLock
or
./gradlew generateLock
./gradlew -PdependencyLock.useGeneratedLock=true test
./gradlew saveLock commitLock
Update lock (the lock must still be saved/committed):
./gradlew updateLock --dependencies com.example:foo,com.example:bar
Properties
- lockFile - This field takes a String. The default is
dependencies.lock
. This filename will be what is generated bygenerateLock
and read when locking dependencies. - configurationNames - This field takes a List. Defaults to the
testRuntime
conf which will includecompile
,runtime
, andtestCompile
. These will be the configurations that are read when locking. - dependencyFilter - This field can be assigned a Closure that is used to filter the set of top-level dependencies as they are retrieved from the configurations. This happens before overrides are applied and before any dependencies are skipped. The Closure must accept the dependency's
group
,name
, andversion
as its 3 parameters. The default implementation returnstrue
, meaning all dependencies are used. - updateDependencies - This field takes a List denoting the dependencies that should be updated when the
updateLock
task is run. If any dependencies are specified via the--dependencies
option, this field is ignored. If any dependencies are listed during execution of theupdateLock
task either via the--dependencies
option or this field, thedependencyFilter
is bypassed. - skippedDependencies - This field takes a List. Defaults to empty. This list is used to list dependencies as ones that will never be locked. Strings should be of the format
<group>:<artifact>
- includeTransitives - This field is a boolean. Defaults to false. False will only lock direct dependencies. True will lock the entire transitive graph.
Use the extension if you wish to configure. Each project where gradle-dependency-lock is applied will have its own dependencyLock extension. The following values are the defaults. If they work for you, you can skip configuring the plugin.
dependencyLock {
lockFile = 'dependencies.lock'
globalLockFile = 'global.lock'
configurationNames = ['testRuntime']
dependencyFilter = { String group, String name, String version -> true }
updateDependencies = []
skippedDependencies = []
includeTransitives = false
}
Properties
- commitMessage - Commit message to use.
- shouldCreateTag - Boolean to tell the commitLock to create a tag, defaults to false.
- tag - A 0 argument closure that returns a String. Needs to generate a unique tag name.
- remoteRetries - Number of times to update from remote repository and retry commits.
Use the following to configure. There will be only one commitDependencyLock extension attached to the rootProject in a multiproject.
commitDependencyLock {
message = 'Committing dependency lock files'
shouldCreateTag = false
tag = { "LockCommit-${new Date().format('yyyyMMddHHmmss')}" }
remoteRetries = 3
}
dependencyLock.lockFile
Allows the user to override the configured lockFile name via the command line. It will expect to find these files in the project directories.
./gradlew -PdependencyLock.lockFile=<filename> <tasks>
dependencyLock.globalLockFile
Allows the user to override the configured globalLockFile name via the command line. It will expect to find this file in the root project directory (where the settings.gradle lives)
./gradlew -PdependencyLock.globalLockFile=<filename> <tasks>
dependencyLock.ignore
Allows the user to ignore any present lockFile and/or command line overrides falling back to standard gradle dependency resolution. Plugin checks for whether this is set to something that will resolve to true.
./gradlew -PdependencyLock.ignore=true <tasks>
dependencyLock.includeTransitives
Allows the user to set if transitive dependencies should be included in the lock file.
./gradlew -PdependencyLock.includeTransitives=true <tasks>
dependencyLock.useGeneratedLock
Use generated lock files in the build directory instead of the locks in the project directories.
./gradlew -PdependencyLock.useGeneratedLock=true <task>
dependencyLock.overrideFile
Allows the user to specify a file of overrides. This file should be in the lock file format specified below in the Lock File Format section. These will override the locked values in the dependencies.lock file. They will be respected when running generateLock. This file is expected at the top level project.
./gradlew -PdependencyLock.overrideFile=override.lock <tasks>
dependencyLock.override
Allows the user to specify overrides to libraries on the command line. This override will be used over any from dependencyLock.overrideFile
./gradlew -PdependencyLock.override=group:artifact:version <tasks>
or to override multiple libraries
./gradlew -PdependencyLock.override=group0:artifact0:version0,group1:artifact1:version1 <tasks>
commitDependencyLock.message
Allows the user to override the commit message.
./gradlew -PcommitDependencyLock.message='commit message' <tasks> commitLock
commitDependencyLock.tag
Allows the user to specify a String for the tagname. If present commitLock will tag the commit with the given String.
./gradlew -PcommitDependencyLock.tag=mytag <tasks> commitLock
The lock file is written in a json format. The keys of the map are made up of "<group>:<artifact>". The requested entry is informational to let users know what version or range of versions was initially asked for. The locked entry is the version of the dependency the plugin will lock to.
{
"<group0>:<artifact0>": { "locked": "<version0>", "requested": "<requestedVersion0>" },
"<group1>:<artifact1>": { "locked": "<version1>", "requested": "<requestedVersion1>" }
}
If a dependency version selection was influenced by a command line argument we add a viaOverride field. The viaOverride field is informational.
{
"<group0>:<artifact0>": { "locked": "<version0>", "requested": "<requestedVersion0>", "viaOverride": "<overrideVersion0>" }
}
If we include transitive dependencies.
{
"<directgroup>:<directartifact>": { "locked": "<directversion>", "requested": "<directrequested>" },
"<group>:<artifact>": { "locked": "<version>", "transitive": [ "<directgroup>:<directartifact>" ]}
}
If we don't include all transitive dependencies we still need to include the transitive information from the direct dependencies of other projects in our multi-project which we depend on.
{
"<directgroup>:<directartifact>": { "locked": "<directversion>", "requested": "<directrequested>" },
"<group>:<artifact>": { "locked": "<version>", "firstLevelTransitive": [ "<mygroup>:<mypeer>" ]},
"<mygroup>:<mypeer>": { "project": true }
}
And we document project dependencies.
If you have
...
dependencies {
compile project(':common')
...
}
The lock will have
{
"group:common": { "project": true }
}
build.gradle
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.netflix.nebula:gradle-dependency-lock-plugin:1.12.+'
}
}
apply plugin: 'java'
apply plugin: 'dependency-lock'
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.guava:guava:14.+'
testCompile 'junit:junit:4.+'
}
When you run
./gradlew generateLock saveLock
It will output
dependencies.lock
{
"com.google.guava:guava": { "locked": "14.0.1", "requested": "14.+" },
"junit:junit": { "locked": "4.11", "requested": "4.+" }
}
{
"compile": {
// existing format
},
"testCompile": {
// existing format
}
}
or
{
"<group>:<artifacts>:<version>": { "transitive": /* same */, "confs": ["compile", "testCompile"] }
}
{
...
"<transitivegroup>:<transitiveartifact>": { "locked": "<transitiveLockedVersion>", "transitive": { "<group>:<artifact>": "<requestedVersion>", "<group1>:<artifact1>": "<requestedVersion1>" } }
...
}