-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
37 lines (27 loc) · 882 Bytes
/
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
plugins {
id "com.github.johnrengelman.shadow" version "7.1.2"
id 'application'
}
mainClassName = 'com.revature.mtg.App'
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.zaxxer:HikariCP:5.0.1'
//implementation 'org.postgresql:postgresql:42.3.3'
implementation 'com.h2database:h2:2.1.210'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2'
implementation 'org.apache.tomcat.embed:tomcat-embed-core:10.1.0-M11'
implementation 'org.slf4j:slf4j-api:1.7.36'
implementation 'org.slf4j:slf4j-simple:1.7.36'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
test {
useJUnitPlatform()
}
/* Commands:
ssh -i .\Downloads\p1-Tanner_key.pem [email protected]
*/