Skip to content

Commit 0fad2e8

Browse files
committed
Enable dependency locking for buildscript
1 parent 4c6dc6b commit 0fad2e8

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@ buildscript {
22
repositories {
33
mavenCentral()
44
}
5+
dependencyLocking {
6+
lockAllConfigurations()
7+
}
58
}
69

710
plugins {
811
id 'java-library'
912
id 'maven-publish'
1013
id 'signing'
1114
id 'jacoco'
12-
id 'de.undercouch.download' version '4.1.1'
13-
id 'me.champeau.gradle.jmh' version '0.5.3'
15+
id 'de.undercouch.download' version 'latest.release'
16+
id 'me.champeau.gradle.jmh' version 'latest.release'
1417
}
1518

1619
group = "de.bwaldvogel"

buildscript-gradle.lockfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This is a Gradle generated file for dependency locking.
2+
# Manual edits can break the build and are not advised.
3+
# This file is expected to be part of source control.
4+
de.undercouch.download:de.undercouch.download.gradle.plugin:4.1.1=classpath
5+
de.undercouch:gradle-download-task:4.1.1=classpath
6+
me.champeau.gradle.jmh:me.champeau.gradle.jmh.gradle.plugin:0.5.3=classpath
7+
me.champeau.gradle:jmh-gradle-plugin:0.5.3=classpath
8+
net.sf.jopt-simple:jopt-simple:4.6=classpath
9+
org.apache.commons:commons-math3:3.2=classpath
10+
org.openjdk.jmh:jmh-core:1.27=classpath
11+
empty=

0 commit comments

Comments
 (0)