-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
dependencies.gradle
53 lines (48 loc) · 1.96 KB
/
dependencies.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* This file essentially extracts the versions of external dependencies.
* With its name "dependencies.gradle", it should be detected and processed by Dependabot.
* See https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
* also https://dev.to/cricketsamya/gradle-with-dependabot-1o47
*
* Keeping the extra properties in the root 'build.gradle' file does not work as some
* properties are required by our pre-compiled plugin before we had a chance to define them
* (no regular code is allowed before 'buildscript'/'plugins').
*
* Since Gradle 7.0 there is a new (better option to centralize dependency versions with a version catalog
* (see https://docs.gradle.org/current/userguide/platforms.html#sec:sharing-catalogs), but
* it is not (yet) supported by Dependabot, renovate, etc.
*/
static def isSnapshotRelease(versionString) {
versionString.endsWith('SNAPSHOT')
}
static def showStandardStreams() {
def propSSS = System.getProperty("showStandardStreams")
propSSS == null ? false : propSSS == "true"
}
static def javaTargetVersion() {
// 1.8 is default, because that's currently jqwik's minimum supported version
def propJV = System.getProperty("javaTargetVersion")
propJV = propJV == '8' ? '1.8' : propJV
propJV = propJV == null ? '1.8' : propJV
propJV
}
ext {
junitPlatformVersion = '1.11.3'
junitJupiterVersion = '5.11.3'
apiGuardianVersion = '1.1.2'
opentest4jVersion = '1.3.0'
archunitVersion = '1.3.0'
assertJVersion = '3.26.3'
mockitoVersion = '4.11.0' // Mockito 5+ no longer supports Java 8
systemLambdaVersion = '1.2.1'
errorproneVersion = '2.35.1'
kotlinVersion = '2.0.0'
kotlinxVersion = '1.9.0'
kotestVersion = '5.9.1'
jspecifyVersion = '1.0.0'
moduleName = 'net.jqwik'
jqwikVersion = '1.9.2-SNAPSHOT'
isSnapshotRelease = isSnapshotRelease(jqwikVersion)
showStandardStreams = showStandardStreams()
javaTargetVersion = javaTargetVersion()
}