-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
47 lines (39 loc) · 1007 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
35
36
37
38
39
40
41
42
43
44
45
46
47
buildscript {
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:${project.grailsVersion}"
}
}
apply plugin: "org.grails.grails-profile"
apply plugin: "org.grails.grails-profile-publish"
group 'org.grails.profiles'
version '0.9.1.BUILD-SNAPSHOT'
// version '0.9.1'
grailsPublish {
userOrg = 'grails'
githubSlug = 'grails-profiles/angular'
license = 'Apache-2.0'
title = "Angular Profile"
desc = "A profile for creating applications with Angular"
developers = [jameskleeh:"James Kleeh",willbuck:"Will Buck"]
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
runtime "org.grails.profiles:rest-api:4.0.0.RC1"
}
processResources {
exclude ('**/node_modules/**')
// dependsOn gulp_build
}
jar {
exclude ('**/node_modules/**')
}
sourcesJar {
exclude ('**/node_modules/**')
}