-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathbuild.gradle
43 lines (33 loc) · 1.09 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
// MOCKNEAT BUILD FILE
buildscript() {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
}
}
plugins {
id "com.github.johnrengelman.shadow" version "1.2.4"
id "com.jfrog.bintray" version "1.7.3"
}
apply plugin: 'java'
group 'net.andreinc'
version '0.0.8'
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.22'
//compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.6.1'
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.5'
compile group: 'commons-codec', name: 'commons-codec', version: '1.10'
compile group: 'com.github.mifmif', name: 'generex', version: '1.0.2'
compile group: 'net.andreinc.aleph', name: 'aleph-formatter', version: '0.0.3'
testCompile group: 'junit', name: 'junit', version: '4.4'
testCompile group: 'commons-validator', name: 'commons-validator', version: '1.5.1'
}
apply from: 'install.gradle'
apply from: 'bintray.gradle'