@@ -22,27 +22,32 @@ if (localPropertiesFile.exists()) {
22
22
localPropertiesFile.inputStream().use(localProperties::load)
23
23
}
24
24
25
- fun getValue (name : String ): String? =
26
- System .getenv(name.replace(' .' , ' _' ).uppercase())
27
- ? : localProperties.getProperty(name)
28
-
29
25
enum class VersionSuffix (val value : Int ) {
30
26
DEV (0 ),
31
27
RELEASE (1 ),
32
28
HOTFIX (2 ),
33
29
MAIN (3 )
34
30
}
35
31
32
+ interface Git {
33
+ @get:Inject val operations: ExecOperations
36
34
37
- fun git (vararg args : String ): String {
38
- val outputStream = ByteArrayOutputStream ()
39
- exec {
40
- commandLine(" git" , * args)
41
- standardOutput = outputStream
35
+ fun exec (vararg args : String ): String {
36
+ val outputStream = ByteArrayOutputStream ()
37
+ operations.exec {
38
+ commandLine(" git" , * args)
39
+ standardOutput = outputStream
40
+ }
41
+ return outputStream.toString().trim()
42
42
}
43
- return outputStream.toString().trim()
44
43
}
45
44
45
+ fun getValue (name : String ): String? =
46
+ System .getenv(name.replace(' .' , ' _' ).uppercase())
47
+ ? : localProperties.getProperty(name)
48
+
49
+ fun git (vararg args : String ) = project.objects.newInstance<Git >().exec(* args)
50
+
46
51
fun getVersionNumberSuffix (): VersionSuffix {
47
52
val ref = git(" describe" , " --tags" , " --always" )
48
53
val branch = git(" branch" )
0 commit comments