forked from grails-profiles/rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (29 loc) · 791 Bytes
/
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
buildscript {
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
}
}
apply plugin: "idea"
apply plugin: "org.grails.grails-profile"
apply plugin: "org.grails.grails-profile-publish"
group 'org.grails.profiles'
version '3.3.3.BUILD-SNAPSHOT'
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
grailsPublish {
userOrg = 'grails'
githubSlug = 'grails-profiles/rest-api'
license = 'Apache-2.0'
title = "Grails REST API Profile"
desc = "A profile for REST API applications"
developers = [graemerocher:'Graeme Rocher']
}
dependencies {
runtime "org.grails.profiles:base:3.3.1"
}