forked from postaddictme/instagram-java-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
25 lines (21 loc) · 804 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
group 'me.postaddict.instagramscraper'
version '0.0.1'
apply plugin: 'java'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile 'com.squareup.okhttp3:okhttp:3.2.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.2.0'
compile 'com.fasterxml.jackson.core:jackson-databind:2.9.2'
compile 'com.github.igor-suhorukov:dom-transformation:1.1'
compile 'commons-io:commons-io:2.6'
compile 'org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final'
compile 'org.eclipse.persistence:org.eclipse.persistence.moxy:2.7.0'
compile 'commons-beanutils:commons-beanutils:1.9.3'
compileOnly 'org.projectlombok:lombok:1.16.18'
testCompile 'junit:junit:4.11'
testCompile 'org.assertj:assertj-core:3.8.0'
}