-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (51 loc) · 2.23 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
52
53
54
55
56
57
58
group 'SUPERSEDE'
version '1.0-SNAPSHOT'
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'eclipse'
war {
baseName = 'replan_optimizer'
version = '0.0.1'
}
sourceCompatibility = 1.8
repositories {
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/release" }
maven { url "http://repo.spring.io/libs-snapshot" }
mavenCentral()
}
buildscript {
ext {
springBootVersion = '1.3.5.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE")
}
}
apply plugin: 'spring-boot'
springBoot {
mainClass = 'io.swagger.Swagger2SpringBoot'
}
dependencies {
compile group: 'org.springframework', name: 'spring-context', version: '4.3.2.RELEASE'
compile group: 'org.springframework.boot', name: 'spring-boot-gradle-plugin', version: '1.4.1.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-web:1.4.1.RELEASE'
// compile 'org.springframework.boot:spring-boot-starter-tomcat:1.2.4.RELEASE'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: '1.4.0.RELEASE'
compile group: 'org.uma.jmetal', name: 'jmetal-core', version: '5.0'
compile group: 'org.uma.jmetal', name: 'jmetal-algorithm', version: '5.0'
compile group: 'org.springframework.boot', name: 'spring-boot-starter-actuator', version: '1.4.0.RELEASE'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '8.0.23'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-el', version: '8.0.23'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-logging-juli', version: '8.0.23'
compile group: 'org.apache.tomcat.embed', name: 'tomcat-embed-websocket', version: '8.0.23'
compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-joda', version: '2.2.1'
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.4.0'
compile group: 'io.swagger', name: 'swagger-annotations', version: '1.5.10'
testCompile group: 'junit', name: 'junit', version: '4.11'
}