-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
76 lines (68 loc) · 2.33 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
68
69
70
71
72
73
74
75
76
plugins {
id 'com.herodevs.nes.springframework.boot' version '2.4.13-spring-boot-2.4.13k'
// id 'org.springframework.boot' version '2.5.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
id 'jacoco'
id "io.freefair.lombok" version "5.3.3.3"
id "org.ec4j.editorconfig" version "0.0.3"
id "org.sonarqube" version "3.1.1"
id 'com.google.cloud.tools.jib' version '3.1.4'
}
group = 'io.github.raeperd'
version = '2.1.1'
sourceCompatibility = '11'
repositories {
mavenCentral()
maven {
url 'https://maven.pkg.github.com/neverendingsupport/spring-boot'
credentials {
username = System.getenv("GITHUB_USER")
password = System.getenv("GITHUB_TOKEN")
}
}
}
dependencies {
// implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'com.herodevs.nes.springframework.boot:spring-boot-starter-web:2.4.13-spring-boot-2.4.13k'
implementation 'com.herodevs.nes.springframework.boot:spring-boot-starter-security:2.4.13-spring-boot-2.4.13k'
implementation 'com.herodevs.nes.springframework.boot:spring-boot-starter-validation:2.4.13-spring-boot-2.4.13k'
implementation 'com.herodevs.nes.springframework.boot:spring-boot-starter-data-jpa:2.4.13-spring-boot-2.4.13k'
runtimeOnly 'com.h2database:h2'
// testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'com.herodevs.nes.springframework.boot:spring-boot-starter-test:2.4.13-spring-boot-2.4.13k'
testImplementation 'org.springframework.security:spring-security-test'
testImplementation 'org.mockito:mockito-inline:3.12.1'
}
apply from: 'test.gradle'
test {
useJUnitPlatform()
}
sonarqube {
properties {
property "sonar.projectKey", "raeperd_realworld-springboot-java"
property "sonar.organization", "raeperd"
property "sonar.host.url", "https://sonarcloud.io"
}
}
jib {
from {
image = "openjdk:11.0.10-jre-buster"
platforms {
platform {
architecture = 'amd64'
os = 'linux'
}
platform {
architecture = 'arm64'
os = 'linux'
}
}
}
to {
image = "ghcr.io/raeperd/${rootProject.name}"
}
container {
ports = ["8080"]
}
}