-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (33 loc) · 899 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
38
39
plugins {
id 'java'
id 'org.springframework.boot' version '3.0.0'
id 'io.spring.dependency-management' version '1.1.0'
id 'application'
}
group 'com.mcbans'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/mcbans/protobuf")
credentials {
username = "firestar"
password = "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"
}
}
maven { url 'https://repo.spring.io/milestone' }
maven {
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-server'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2022.0.0"
}
}
application {
mainClass = 'com.mcbans.eureka.EurekaServer'
}