-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathbuild.gradle
29 lines (26 loc) · 1.2 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
allprojects {
repositories {
mavenCentral()
maven { url "https://repo.grails.org/grails/core" }
}
}
version = project.projectVersion
subprojects { project ->
project.version = project.projectVersion
if(project.name.endsWith('grails-redis')) {
apply plugin: 'org.grails.grails-publish'
grailsPublish {
githubSlug = 'grails/grails-redis'
license {
name = 'Apache-2.0'
}
title = 'Grails Redis Plugin'
desc = 'This Plugin provides access to Redis and various utilities (service, annotations, etc) for caching.'
developers = ['tednaleid': 'Ted Naleid', 'burtbeckwith': 'Burt Beckwith', 'christianoestreich': 'Christian Oestreich',
'briancoles': 'Brian Coles', 'michaelcameron': 'Michael Cameron', 'johnengelman': 'John Engelman',
'davidseiler': 'David Seiler', 'jordonsaardchit': 'Jordon Saardchit', 'florianlangenhahn': 'Florian Langenhahn',
'germansancho': 'German Sancho', 'johnmulhern': 'John Mulhern', 'shaunjurgemeyer': 'Shaun Jurgemeyer',
'puneetbehl': 'Puneet Behl']
}
}
}