-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (28 loc) · 1.13 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
group = 'com.9ls'
version = '1.17.0'
project.ext {
library_baseName = 'common-context'
jacoco_limits = [
'instruction': 84,
'branch' : 55,
'line' : 86,
'complexity' : 76,
'method' : 100,
'class' : 100
]
jacoco_codecy = true
publish_name = 'nls-common-context'
publish_description = 'Common utility classes'
publish_url = 'https://github.com/nine-lives/nls-common-context'
publish_scm = 'scm:git@github.com:nine-lives/nls-common-context.git'
publish_license = 'https://raw.githubusercontent.com/nine-lives/nls-common-context/master/LICENSE'
publish_developerId = 'mgsmith57'
publish_developerName = 'Marc G. Smith'
publish_developerEmail = 'marc@9ls.com'
publish_credentialsUserName = project.hasProperty('ossrhUsername') ? ossrhUsername : ''
publish_credentialsPassword = project.hasProperty('ossrhPassword')? ossrhPassword : ''
}
apply from: "https://raw.githubusercontent.com/nine-lives/gradle-scripts/main/v6/library.gradle"
dependencies {
implementation "org.springframework:spring-context:5.3.31"
}