-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (40 loc) · 1.24 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
51
plugins {
id "com.bmuschko.nexus" version "2.3.1"
}
group 'edu.teco.smartlambda'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile group: 'com.google.code.gson', name: 'gson', version: '2.4'
compile group: 'com.google.auto.service', name: 'auto-service', version: '1.0-rc2'
compileOnly "org.projectlombok:lombok:1.16.12"
testCompile group: 'junit', name: 'junit', version: '4.12'
}
modifyPom {
project {
name 'SmartLambda JRE8 lambda annotation library'
description 'Provides the Java annotation required for deploying lambdas on SmartLambda'
url 'https://github.com/SmartLambda/lambda-jre8'
scm {
url 'https://github.com/SmartLambda/lambda-jre8'
connection 'scm:https://github.com/SmartLambda/lambda-jre8.git'
}
licenses {
license {
name 'GNU Lesser General Public License v3'
url 'https://www.gnu.org/licenses/lgpl-3.0'
distribution 'repo'
}
}
developers {
developer {
id 'SmartLambda'
name 'The SmartLambda developers'
}
}
}
}