-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (35 loc) · 819 Bytes
/
build.gradle
File metadata and controls
42 lines (35 loc) · 819 Bytes
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
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath 'gradle.plugin.com.github.jengelman.gradle.plugins:shadow:7.0.0'
}
}
plugins {
id 'java'
id 'idea'
id 'com.github.johnrengelman.shadow'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation 'io.javalin:javalin-bundle:3.13.4'
implementation 'org.mongodb:mongodb-driver-sync:4.2.2'
implementation "org.slf4j:slf4j-simple:1.7.30"
implementation "at.favre.lib:bcrypt:0.9.0"
implementation ('org.simplejavamail:simple-java-mail:6.5.0') {
exclude group: 'org.slf4j'
}
}
jar {
manifest {
attributes 'Main-Class': 'de.canitzp.rockbottommanagement.Main'
}
}
shadowJar {
mergeServiceFiles()
}