mirror of
https://github.com/rehlds/rehlds.git
synced 2025-02-08 03:22:17 +03:00
17 lines
335 B
Groovy
17 lines
335 B
Groovy
package versioning
|
|
|
|
import groovy.transform.CompileStatic
|
|
import groovy.transform.TypeChecked
|
|
import org.joda.time.DateTime
|
|
|
|
@CompileStatic @TypeChecked
|
|
class GitInfo {
|
|
boolean localChanges
|
|
DateTime commitDate
|
|
String branch
|
|
String tag
|
|
String commitSHA
|
|
String commitURL
|
|
Integer commitCount
|
|
}
|