-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
72 lines (61 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
buildscript {
ext {
springBootVersion = '2.5.10'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
plugins {
// https://projectlombok.org
id "io.freefair.lombok" version "6.5.1"
}
repositories {
mavenLocal()
mavenCentral()
jcenter()
}
apply plugin: 'war'
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
war {
archivesBaseName = 'ngs-stats'
}
group = 'org.mskcc'
sourceCompatibility = '1.8'
dependencies {
implementation 'io.springfox:springfox-swagger-ui:2.9.2'
implementation 'io.springfox:springfox-swagger2:2.9.2'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '4.1.0'
implementation group: 'commons-codec', name: 'commons-codec', version: '1.12'
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
implementation ('org.springframework.boot:spring-boot-starter-web')
implementation ('org.springframework.boot:spring-boot-starter-tomcat')
implementation group: 'com.codesnippets4all', name: 'quick-json', version: '1.0.4'
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation group: 'org.jsoup', name: 'jsoup', version: '1.12.1'
implementation group: 'com.squareup', name: 'javapoet', version: '1.10.0'
runtimeOnly('mysql:mysql-connector-java')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation group: 'org.springframework', name: 'spring-test'
testImplementation group: 'com.h2database', name: 'h2', version: '1.4.200'
// from https://docs.gradle.org/current/userguide/java_testing.html#using_junit5
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testCompileOnly 'junit:junit:4.13.2'
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine'
}
test {
useJUnitPlatform()
testLogging {
events "passed", "skipped", "failed"
}
}
task buildModels(type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
main = 'org.mskcc.cellranger.documentation.CodeGenerator'
}