-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (26 loc) · 806 Bytes
/
Copy pathbuild.gradle
File metadata and controls
31 lines (26 loc) · 806 Bytes
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
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'pl.allegro.tech.build.axion-release' version '1.7.0'
}
ext.pluginName = 'Salt Plugin'
ext.pluginDescription = 'Plugins for SaltStack via its API'
ext.sopsCopyright = 'Sebastian Engel'
ext.sopsUrl = 'https://github.com/blu-base/salt-plugin'
ext.buildDateString=new Date().format("yyyy-MM-dd'T'HH:mm:ssX")
ext.archivesBaseName = 'salt-plugin'
ext.pluginBaseFolder = '.'
scmVersion {
ignoreUncommittedChanges = true
tag {
prefix = ''
versionSeparator = ''
def origDeserialize=deserialize
}
}
project.version = scmVersion.version
ext.archiveFilename = ext.archivesBaseName + '-' + version
apply from: 'https://raw.githubusercontent.com/rundeck-plugins/build-zip/gradle-5.6/build.gradle'