-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
67 lines (58 loc) · 1.82 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
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building an application
id 'application'
}
// Define the main class for the application
mainClassName = 'io.brainshells.api.openimagecv.processor.ApplicationBootstrap'
sourceSets {
main.java.srcDirs = ['java']
main.resources.srcDirs = ['resources']
}
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
implementation 'net.logstash.logback:logstash-logback-encoder:7.0.1'
implementation 'ch.qos.logback.contrib:logback-jackson:0.1.5'
implementation 'ch.qos.logback.contrib:logback-json-classic:0.1.5'
}
// In this section you declare where to find the dependencies of your project
repositories {
mavenCentral()
mavenLocal()
maven { url "https://repo.spring.io/snapshot" }
maven { url "https://repo.spring.io/milestone" }
google()
maven {
name "Artifactory repository"
url "https://oss.jfrog.org/artifactory/jcenter-cache/"
}
maven {
name "Jitpack repository"
url "https://jitpack.io"
}
// maven {
// name "JCenter gradle plugins repository"
// url "https://dl.bintray.com/gradle/gradle-plugins"
// }
maven {
name "Sonatype snapshots repository"
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
maven {
name "Gradle plugins repository"
url "https://plugins.gradle.org/m2/"
}
// maven {
// name "IceRockDev gradle plugins repository"
// url "https://dl.bintray.com/icerockdev/plugins"
// }
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
maven {
url "https://repo.clojars.org/"
}
}