-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
91 lines (77 loc) · 2.99 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.1.1/userguide/tutorial_java_projects.html
*/
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building a CLI application.
id 'application'
id 'org.springframework.boot' version '2.5.0'
id 'io.spring.dependency-management' version '1.0.7.RELEASE'
id 'jacoco'
id 'io.codearte.nexus-staging' version '0.30.0'
}
archivesBaseName = 'ga4gh-testbed-api'
group 'org.ga4gh'
version '0.1.0'
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
implementation 'com.google.guava:guava:28.1-jre'
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.0'
implementation 'commons-cli:commons-cli:1.4'
implementation 'commons-io:commons-io:2.8.0'
implementation 'commons-codec:commons-codec:1.15'
implementation 'com.fasterxml.jackson.core:jackson-core:2.12.1'
implementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.11.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.9.4'
implementation 'org.hibernate:hibernate-core:5.4.11.Final'
implementation 'org.springframework:spring-orm:5.1.6.RELEASE'
implementation 'org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final'
implementation 'org.hibernate:hibernate-core:5.4.11.Final'
implementation 'org.postgresql:postgresql:42.2.10'
implementation 'javax.xml.bind:jaxb-api:2.2.8'
implementation 'org.springdoc:springdoc-openapi-ui:1.2.33'
implementation 'org.xerial:sqlite-jdbc:3.8.11.2'
implementation 'com.vladmihalcea:hibernate-types-52:2.14.0'
implementation 'org.ga4gh:ga4gh-starter-kit-common:0.5.6'
implementation platform('software.amazon.awssdk:bom:2.17.145')
implementation 'software.amazon.awssdk:secretsmanager:2.17.145'
implementation 'net.logstash.logback:logstash-logback-encoder:7.0.1'
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
testImplementation 'org.testng:testng:7.0.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.0'
testImplementation 'org.springframework.security:spring-security-test'
}
jar {
enabled = true
}
bootJar {
mainClassName = 'org.ga4gh.testbed.api.app.TestbedApi'
}
test {
testLogging {
showStandardStreams = false
}
useTestNG()
}
jacoco {
toolVersion = '0.8.5'
reportsDir = file("$buildDir/reports/jacoco")
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}