-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathbuild.gradle
More file actions
45 lines (42 loc) · 1.37 KB
/
build.gradle
File metadata and controls
45 lines (42 loc) · 1.37 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
plugins {
id 'com.vanniktech.maven.publish' version '0.28.0'
}
apply from: "${rootDir}/gradle/packaging.gradle"
apply from: "${rootDir}/gradle/test-runner.gradle"
apply from: "${rootDir}/gradle/code-publish.gradle"
import com.vanniktech.maven.publish.SonatypeHost;
mavenPublishing {
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
signAllPublications()
pom {
name = "Rqueue Spring Java"
description = "Redis Asynchronous and Scheduled task executor for spring framework"
url = "https://github.com/sonus21/rqueue"
licenses {
license {
name = "Apache License 2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
id = "sonus21"
name = "Sonu Kumar"
email = "sonunitw12@gmail.com"
}
}
scm {
url = "https://github.com/sonus21/rqueue"
connection = "scm:git:git://github.com/sonus21/rqueue.git"
developerConnection = "scm:git:ssh://git@github.com:sonus21/rqueue.git"
}
issueManagement {
system = "GitHub"
url = "https://github.com/sonus21/rqueue/issues"
}
}
}
dependencies {
api project(":rqueue-core")
testImplementation project(":rqueue-spring-common-test")
}