-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (43 loc) · 1.14 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
plugins {
//id 'org.kordamp.gradle.groovy-project' version '0.28.0'
id 'org.kordamp.gradle.jacoco' version '0.28.0'
//id 'org.kordamp.gradle.codenarc' version '0.28.0'
}
ext {
mavenUsername = findProperty("maven.username")
mavenPassword = findProperty("maven.password")
shouldRelease = "${findProperty('release')}".toBoolean()
}
config {
release = false
info {
name = 'Liceo Social'
vendor = 'Liceo Social'
description = 'Applicacion para la gestion de servicios sociales'
inceptionYear = '2019'
tags = ['social', 'ong', 'grails']
links {
website = 'https://github.com/liceo-social/liceo'
issueTracker = 'https://github.com/liceo-social/liceo'
scm = 'https://github.com/liceo-social/liceo.git'
}
}
licensing {
enabled = false
licenses {
license {
id = 'Apache-2.0'
}
}
}
}
allprojects {
repositories {
mavenCentral()
}
tasks.withType(JavaCompile) {
sourceCompatibility = findProperty('sourceCompatibility')
targetCompatibility = findProperty('targetCompatibility')
options.encoding = 'UTF-8'
}
}