-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle
29 lines (24 loc) · 1.28 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
group 'net.rodrigoamaral'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'org.uma.jmetal', name: 'jmetal-core', version: '5.2'
compile group: 'org.uma.jmetal', name: 'jmetal-algorithm', version: '5.2'
compile group: 'org.uma.jmetal', name: 'jmetal-problem', version: '5.2'
compile group: 'org.uma.jmetal', name: 'jmetal-exec', version: '5.2'
compile group: 'javax.json', name: 'javax.json-api', version: '1.0'
compile group: 'org.glassfish', name: 'javax.json', version: '1.0.4'
// https://mvnrepository.com/artifact/org.apache.commons/commons-math3
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6.1'
// https://mvnrepository.com/artifact/commons-cli/commons-cli
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.2'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.9.2'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.2'
}