-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (30 loc) · 1 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
// Repositories to use for fetching build dependencies (not application dependencies)
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1'
}
}
apply plugin: 'com.github.johnrengelman.shadow'
apply plugin: 'java'
group = 'sondow'
version = '1.2.1'
description = """\
Uses AWS Lambda to tweet phrases based on a Markov chain.
------------------------------------------
Project version: ${version}
Gradle version: ${gradle.gradleVersion}
------------------------------------------
"""
// Repositories to use for fetching application dependencies (not build dependencies)
repositories {
jcenter()
}
dependencies {
compile group: 'com.amazonaws', name: 'aws-lambda-java-core', version:'1.1.0'
compile group: 'org.twitter4j', name: 'twitter4j-core', version:'4.0.6'
testCompile group: 'junit', name: 'junit', version:'4.12'
testCompile group: 'com.github.stefanbirkner', name: 'system-rules', version:'1.16.0'
}