-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
66 lines (54 loc) · 1.49 KB
/
build.gradle
File metadata and controls
66 lines (54 loc) · 1.49 KB
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
import com.vanniktech.maven.publish.SonatypeHost
plugins {
id 'java'
id "com.vanniktech.maven.publish" version "0.28.0"
id 'signing'
}
group = 'io.github.seob7'
version = '0.0.2'
repositories {
mavenCentral()
}
tasks.withType(Javadoc) {
options {
encoding 'UTF-8'
}
}
signing {
sign publishing.publications
}
mavenPublishing {
signAllPublications()
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
coordinates("io.github.seob7", "common-api", "0.0.2")
// POM 설정
pom {
name = 'common-api'
description = 'Common API specifications and utility classes for Spring Boot'
url = 'https://github.com/seob7/common-api'
// 라이선스 정보
licenses {
license {
name = 'Apache License'
url = 'https://github.com/seob7/common-api/blob/main/LICENSE'
}
}
// 개발자 정보
developers {
developer {
id = 'seob7'
name = 'Dongseob Lee'
email = 'svj7531@gmail.com'
}
}
scm {
connection = 'scm:git:github.com/seob7/common-api.git'
developerConnection = 'scm:git:ssh://github.com:seob7/common-api.git'
url = 'https://github.com/seob7/common-api/tree/main'
}
}
}
dependencies {
implementation 'org.springframework:spring-web:6.2.11'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.19.2'
}