-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
100 lines (88 loc) · 2.47 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
plugins {
id 'java'
id 'maven-publish'
id 'org.jreleaser' version '1.15.0'
}
group = 'xyz.ericlamm.toolkits'
version = '0.0.2'
java {
withJavadocJar()
withSourcesJar()
}
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/eric2788/reflectionproxy"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
maven {
name = "localStaging"
url = layout.buildDirectory.dir('staging-deploy')
}
}
publications {
mavenJava(MavenPublication) {
groupId = 'xyz.ericlamm.toolkits'
artifactId = 'reflection-proxy'
from components.java
pom {
name = 'reflection-proxy'
description = 'using java reflection elegantly via proxy'
url = 'https://github.com/eric2788/reflectionproxy'
inceptionYear = '2024'
licenses {
license {
name = 'MIT License'
url = 'http://www.opensource.org/licenses/mit-license.php'
}
}
developers {
developer {
id = 'eric2788'
name = 'Eric Lam'
}
}
scm {
connection = 'scm:git:https://github.com/eric2788/ReflectionProxy.git'
developerConnection = 'scm:git:ssh://github.com/eric2788/ReflectionProxy.git'
url = 'http://github.com/eric2788/ReflectionProxy'
}
}
}
}
}
jreleaser {
signing {
active = 'ALWAYS'
armored = true
mode = System.getenv("CI") ? 'MEMORY' : 'FILE'
passphrase = ""
print ""
}
deploy {
maven {
mavenCentral {
sonatype {
active = 'ALWAYS'
url = 'https://central.sonatype.com/api/v1/publisher'
stagingRepository('build/staging-deploy')
}
print ""
}
}
}
}