-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
54 lines (44 loc) · 1.38 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
buildscript {
repositories {
jcenter()
mavenCentral()
mavenLocal()
maven { url "https://repo.unnamed.team/repository/unnamed-public/" }
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.4'
classpath 'com.google.inject:guice:4.0'
classpath 'me.yushust.message:core:7.1.3'
classpath 'org.springframework.boot:spring-boot-starter-data-jpa:3.1.0'
classpath 'com.github.ben-manes.caffeine:caffeine:3.1.6'
}
}
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.0'
}
group = 'net.hyphaelands'
version = '1.0'
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
group = project.group
version = project.version
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
mavenCentral()
mavenLocal()
maven { url "https://repo.unnamed.team/repository/unnamed-public/" }
}
dependencies {
implementation 'org.projectlombok:lombok:1.18.26'
annotationProcessor 'org.projectlombok:lombok:1.18.26'
implementation 'com.google.inject:guice:5.1.0'
implementation 'me.yushust.message:core:7.1.3'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:3.1.0'
implementation 'com.github.ben-manes.caffeine:caffeine:3.1.6'
}
}
repositories {
mavenCentral()
}