forked from reportportal/service-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
131 lines (115 loc) · 4.63 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
/*
* Copyright 2019 EPAM Systems
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
id "io.spring.dependency-management" version "1.0.8.RELEASE"
id 'org.springframework.boot' version '2.2.1.RELEASE'
id 'java'
id "org.owasp.dependencycheck" version "5.2.1"
}
import org.owasp.dependencycheck.reporting.ReportGenerator
apply from: 'project-properties.gradle'
apply from: "$scriptsUrl/build-docker.gradle"
apply from: "$scriptsUrl/build-commons.gradle"
apply from: "$scriptsUrl/build-info.gradle"
apply from: "$scriptsUrl/release-service.gradle"
apply from: "$scriptsUrl/copy-database-scripts.gradle"
apply from: "$scriptsUrl/build-quality.gradle"
apply from: "$scriptsUrl/jacoco.gradle"
project.hasProperty('sealightsSession') && sealightsSession?.trim() ? apply(from: 'sealights.gradle') : println('No sealights session')
repositories {
mavenCentral()
mavenLocal()
releaseMode ? maven { url "http://dl.bintray.com/epam/reportportal" } : maven { url 'https://jitpack.io' }
maven { url "http://jasperreports.sourceforge.net/maven2" }
maven { url "http://jaspersoft.artifactoryonline.com/jaspersoft/third-party-ce-artifacts" }
}
dependencyManagement {
imports {
mavenBom(releaseMode ? 'com.epam.reportportal:commons-bom:5.1.0-RC' : 'com.github.reportportal:commons-bom:7affe20')
}
}
dependencies {
if (releaseMode) {
compile 'com.epam.reportportal:commons-dao'
compile 'com.epam.reportportal:commons-rules'
compile 'com.epam.reportportal:commons-model'
compile 'com.epam.reportportal:commons'
compile 'com.epam.reportportal:commons-fonts'
compile 'com.epam.reportportal:plugin-api'
} else {
compile 'com.github.reportportal:commons-dao:9c7a1c0'
compile 'com.github.reportportal:commons-rules:0fd2060'
compile 'com.github.reportportal:commons-model:9c3fec4'
compile 'com.github.reportportal:commons:b10eade'
compile 'com.github.reportportal:commons-fonts:10d1054'
compile 'com.github.reportportal:plugin-api:4623190'
}
compile 'org.springframework.boot:spring-boot-starter-aop'
compile 'org.springframework.boot:spring-boot-starter-web'
compile 'org.springframework.boot:spring-boot-starter-quartz'
compile 'org.springframework.boot:spring-boot-starter-freemarker'
compile 'org.springframework.boot:spring-boot-starter-actuator'
compile("org.springframework.boot:spring-boot-starter-amqp")
// Optional for spring-boot-starter-amqp
compile "com.rabbitmq:http-client:2.1.0.RELEASE"
compile 'com.sun.mail:javax.mail:1.6.2'
compile 'net.sf.jasperreports:jasperreports:6.10.0'
// JasperReport's export to XLS uses Apache POI
compile 'org.apache.poi:poi:4.1.0'
compile 'io.springfox:springfox-swagger2'
///// Security
compile 'org.springframework.security.oauth:spring-security-oauth2:2.4.0.RELEASE'
compile 'org.springframework.security:spring-security-jwt:1.0.11.RELEASE'
compile 'org.springframework.security:spring-security-acl'
compile 'com.github.ben-manes.caffeine:caffeine:2.8.0'
// Metrics
compile 'io.micrometer:micrometer-registry-prometheus:1.3.1'
// Tests
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile 'org.flywaydb.flyway-test-extensions:flyway-spring-test:6.0.0'
}
processResources {
dependsOn(gitInfo)
filesMatching('application.properties') {
expand(project.properties)
}
}
dependencyCheck {
formats = [ReportGenerator.Format.HTML, ReportGenerator.Format.XML]
// cveValidForHours = 1
}
bootJar {
project.hasProperty('gcp') ? getArchiveFileName().set('app.jar') : archiveClassifier.set('exec')
}
jar.enabled(true)
test {
dependsOn(copyTestDatabaseScripts)
useJUnitPlatform()
maxParallelForks = 1
testLogging {
events = ['failed']
exceptionFormat = 'short'
}
reports {
junitXml.enabled = true
}
}
addDockerfileToGit.dependsOn createDockerfile
beforeReleaseBuild.dependsOn addDockerfileToGit
bintrayUpload.mustRunAfter build
afterReleaseBuild.dependsOn bintrayUpload
checkCommitNeeded.dependsOn removeScripts
build.dependsOn jacocoTestReport