-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
131 lines (109 loc) · 3.99 KB
/
build.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import java.nio.charset.StandardCharsets
import java.nio.file.Files
import java.nio.file.OpenOption
import java.nio.file.Paths
import java.nio.file.StandardOpenOption
buildscript {
ext {
grailsVersion = project.grailsVersion
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath 'com.bertramlabs.plugins:asset-pipeline-gradle:2.5.0'
classpath "org.grails.plugins:hibernate:4.3.10.5"
classpath "org.grails.plugins:database-migration:2.0.0.RC1"
}
}
plugins {
id "io.spring.dependency-management" version "0.5.2.RELEASE"
}
version "0.3-SNAPSHOT"
group "com.ognext"
apply plugin: "spring-boot"
apply plugin: "war"
apply plugin: "asset-pipeline"
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: "org.grails.grails-web"
apply plugin: "org.grails.grails-gsp"
ext {
grailsVersion = project.grailsVersion
gradleWrapperVersion = project.gradleWrapperVersion
}
assets {
minifyJs = true
minifyCss = true
}
def generatedResources = "$buildDir/generated-resources/main"
sourceSets {
main {
output.dir(generatedResources, builtBy: "generateResources")
resources {
srcDir "grails-app/migrations"
}
}
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
}
applyMavenExclusions false
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-autoconfigure"
provided "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-dependencies"
compile "org.grails:grails-web-boot"
compile "org.grails.plugins:hibernate"
compile "org.grails.plugins:cache"
compile "org.hibernate:hibernate-ehcache"
compile "org.grails.plugins:scaffolding"
runtime "org.grails.plugins:asset-pipeline"
runtime "org.postgresql:postgresql:9.4-1206-jdbc42"
runtime "org.grails.plugins:database-migration:2.0.0.RC1"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails.plugins:geb"
// Note: It is recommended to update to a more robust driver (Chrome, Firefox etc.)
testRuntime 'org.seleniumhq.selenium:selenium-htmlunit-driver:2.44.0'
console "org.grails:grails-console"
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
task generateResources {
def commitHash = "git rev-parse HEAD".execute().text.trim()
def uncommittedChanges = ("git status --porcelain".execute().text.trim()) ? "true" : "false"
def generatedResourcesPath = Paths.get(generatedResources)
Files.createDirectories(generatedResourcesPath)
def infoPath = generatedResourcesPath.resolve("info.properties")
def infoWriter = Files.newBufferedWriter(infoPath, StandardCharsets.UTF_8, [StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING] as OpenOption[])
infoWriter.withWriter { writer ->
writer.println("version=$version")
writer.println("commitHash=$commitHash")
writer.println("uncommittedChanges=$uncommittedChanges")
}
def gitDiffPath = generatedResourcesPath.resolve("gitdiff.txt")
Files.deleteIfExists(gitDiffPath)
if (uncommittedChanges) {
def gitDiff = "git diff HEAD".execute().text
def diffWriter = Files.newBufferedWriter(gitDiffPath, StandardCharsets.UTF_8, StandardOpenOption.CREATE_NEW)
diffWriter.withWriter { it.print(gitDiff) }
}
}
war.doLast {
def uncommittedChanges = "git status --porcelain".execute().text
if (uncommittedChanges) {
println "WARNING: You have built a WAR with uncommitted changes, did you forget to commit before building?"
println "You might have a wrong commit hash in the WAR at this moment."
}
}