forked from FusionAuth/fusionauth-localization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.savant
48 lines (36 loc) · 1.05 KB
/
build.savant
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
/*
* Copyright (c) 2019-2020, FusionAuth, All Rights Reserved
*/
savantVersion = "1.0.0"
project(group: "io.fusionauth", name: "fusionauth-localization", version: "1.30.1", licenses: ["ApacheV2_0"]) {
workflow {
standard()
}
publishWorkflow {
subversion(repository: "http://svn.inversoft.org/savant")
}
publications {
}
}
/*
* Define Plugins
*/
idea = loadPlugin(id: "org.savantbuild.plugin:idea:1.0.1")
release = loadPlugin(id: "org.savantbuild.plugin:release-git:${savantVersion}")
/*
* Plugin Settings
*/
target(name: "clean", description: "Cleans out the build directory") {
}
target(name: "compile", description: "Compiles the project") {
}
target(name: "jar", description: "JARs the project", dependsOn: ["compile"]) {
}
target(name: "int", description: "Releases a local integration build of the project") {
}
target(name: "idea", description: "Updates the IntelliJ IDEA module file") {
idea.iml()
}
target(name: "release", description: "Releases a full version of the project", dependsOn: ["clean", "int"]) {
release.release()
}