forked from OpenLMIS/openlmis-requisition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
235 lines (204 loc) · 7.19 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.3.3.RELEASE"
}
}
plugins {
id "org.flywaydb.flyway" version "4.0"
id "org.sonarqube" version "2.0.1"
id "com.moowork.node" version "0.12"
}
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'spring-boot'
apply plugin: 'checkstyle'
apply plugin: 'jacoco'
apply plugin: 'pmd'
group = serviceGroup
version = serviceVersion
archivesBaseName = rootProject.name
project.ext.buildTime = java.time.Instant.now().toString() // for versioning
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
maven { url "http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts/" }
maven { url "http://jasperreports.sourceforge.net/maven2/" }
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-web"
compile "org.projectlombok:lombok:1.16.8"
compile "org.springframework.boot:spring-boot-starter-data-jpa"
compile "org.postgresql:postgresql:9.4.1208"
compile "org.springframework:spring-test"
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.4.0"
compile "com.fasterxml.jackson.datatype:jackson-datatype-hibernate4:2.4.0"
compile "net.sf.supercsv:super-csv-dozer:2.4.0"
compile "org.springframework.boot:spring-boot-starter-security"
compile "org.springframework.security.oauth:spring-security-oauth2"
compile "net.sf.jasperreports:jasperreports:6.3.0"
compile "com.lowagie:itext:2.1.7"
compile "org.olap4j:olap4j:1.2.0"
compile 'net.sf.jasperreports:jasperreports:6.1.1'
compile 'commons-io:commons-io:2.4'
compile 'org.springframework:spring-context-support'
compile 'commons-jxpath:commons-jxpath:1.3'
testCompile 'io.rest-assured:rest-assured:3.0.0'
testCompile 'io.rest-assured:json-schema-validator:3.0.0'
testCompile 'io.rest-assured:spring-mock-mvc:3.0.0'
testCompile "com.jayway.restassured:rest-assured:2.7.0"
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "guru.nidi.raml:raml-tester:0.8.9"
testCompile "junit:junit"
testCompile "org.mockito:mockito-core:1.+"
testCompile "org.powermock:powermock-api-mockito:1.6.5"
testCompile "org.powermock:powermock-module-junit4:1.6.5"
testCompile "com.github.tomakehurst:wiremock:1.58"
}
idea {
project {
vcs = 'Git'
ipr.withXml { xmlFile ->
// enable 'Annotation Processors', source: https://gist.github.com/stephanos/8645809
xmlFile.asNode().component
.find { it.@name == 'CompilerConfiguration' }['annotationProcessing'][0]
.replaceNode {
annotationProcessing {
profile(default: true, name: 'Default', useClasspath: 'true', enabled: true)
}
}
}
}
}
flyway {
url = "$System.env.DATABASE_URL"
user = "$System.env.POSTGRES_USER"
password = "$System.env.POSTGRES_PASSWORD"
schemas = ['requisition']
sqlMigrationPrefix = ''
placeholderPrefix = '#['
placeholderSuffix = ']'
}
sourceSets {
integrationTest {
java {
compileClasspath += main.output + test.output
runtimeClasspath += main.output + test.output
srcDir file('src/integration-test/java')
}
resources.srcDir file('src/integration-test/resources')
}
}
configurations {
integrationTestCompile.extendsFrom testCompile
integrationTestRuntime.extendsFrom testRuntime
}
task integrationTest(type: Test) {
testClassesDir = sourceSets.integrationTest.output.classesDir
classpath = sourceSets.integrationTest.runtimeClasspath
testLogging {
events "passed", "skipped", "failed"
exceptionFormat = 'full'
}
mustRunAfter test
}
tasks.withType(Test) {
reports.html.destination = file("${reporting.baseDir}/${name}")
reports.junitXml.destination = file("${testResultsDir}/${name}")
}
// Usage: gradle generateMigration [-PmigrationName=name_of_migration]
// Defaults to 'migration' as migration name
// Example: gradle generateMigration -PmigrationName=add_column_to_users
// Will create a file in migration folder with name yyyyMMddHHmmssSSS_add_column_to_users.sql.
task generateMigration << {
description 'Creates an empty new file within the src/main/resources/db/migration directory into which developers can add new SQL migration code.'
def fileName = project.hasProperty('migrationName') ? migrationName : 'migration'
def timestamp = new Date().format('yyyyMMddHHmmssSSS', TimeZone.getTimeZone('GMT'))
def fullFileName = "${timestamp}__${fileName}.sql"
def migrationFile = new File(sourceSets.main.resources.srcDirs.first(),'db/migration/'+fullFileName)
migrationFile.createNewFile()
}
task checkApiIsRaml(type:Exec) {
executable "raml-cop"
args "src/main/resources/api-definition.yaml"
}
task demoDataSeed(type:Exec) {
executable "./demo-data/demo_seed.sh"
args "./demo-data", "node ./demo-data/seed_generator.js"
}
configure(checkApiIsRaml) {
group = JavaBasePlugin.VERIFICATION_GROUP
description = 'Verify that the api-specification is valid RAML'
}
jacocoTestReport {
group = "reporting"
description = "Generate Jacoco coverage reports after running tests."
reports {
xml.enabled true
html.enabled true
csv.enabled false
}
additionalSourceDirs = files(sourceSets.main.allJava.srcDirs)
}
checkstyle {
toolVersion = "6.19"
}
//Usage: gradle sonarqube
sonarqube {
properties {
property "sonar.projectName", "OpenLMIS Requisition"
property "sonar.projectKey", "org.sonarqube:openlmis-requisition"
property "sonar.host.url", "http://sonar.openlmis.org"
property "sonar.projectVersion", version
property "sonar.java.coveragePlugin", "jacoco"
//Tells SonarQube where the unit tests execution reports are
property "sonar.junit.reportsPath", "build/test-results/test"
//Tells SonarQube where the unit tests code coverage report is
property "sonar.jacoco.reportPath", "build/jacoco/test.exec"
//Tells SonarQube where the integration tests code coverage report is
property "sonar.jacoco.itReportPath", "build/jacoco/integrationTest.exec"
properties["sonar.tests"] += sourceSets.integrationTest.java
}
}
pmd {
toolVersion = '5.4.0'
consoleOutput= true
ignoreFailures = false
ruleSetFiles = files("config/pmd/ruleset.xml")
reportsDir = file("build/reports/pmd")
}
tasks.withType(Pmd){
reports {
xml.enabled true
html.enabled true
}
}
processResources {
// update version information in build
filesMatching('**/version.properties') {
expand(project.properties)
}
}
test {
testLogging {
events 'started', 'passed'
exceptionFormat = 'full'
}
}
apply from: "documentation.gradle"
integrationTest.dependsOn copyRamlToBuild
check {
dependsOn checkApiIsRaml
dependsOn integrationTest
}
build {
dependsOn jacocoTestReport
dependsOn check
dependsOn ramlToSwagger
dependsOn ramlToHtml
dependsOn copyRamlHtmlToBuild
}