-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (28 loc) · 1.08 KB
/
build.gradle
File metadata and controls
32 lines (28 loc) · 1.08 KB
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
plugins {
id 'java'
}
group 'org.mathgenerator'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
mavenLocal()
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots'
}
}
dependencies {
// implementation 'com.google.inject:guice:5.1.0'
// implementation 'com.google.inject.extensions:guice-servlet:5.1.0'
// implementation 'javax.servlet:javax.servlet-api:4.0.1'
// implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.36'
// implementation group: 'io.logz', name: 'guice-jersey', version: '1.0.16'
implementation group: 'io.dropwizard', name: 'dropwizard-core', version: '2.0.28'
implementation group: 'io.dropwizard', name: 'dropwizard-hibernate', version: '2.0.28'
implementation group: 'io.dropwizard', name: 'dropwizard-views-mustache', version: '2.0.28'
implementation group: 'org.postgresql', name: 'postgresql', version: '42.3.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
test {
useJUnitPlatform()
}