-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpublish.gradle
More file actions
38 lines (34 loc) · 1.15 KB
/
publish.gradle
File metadata and controls
38 lines (34 loc) · 1.15 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
apply plugin: 'maven-publish'
apply plugin: 'signing'
publishing {
publications {
all {
pom {
url = 'https://github.com/xenit-eu/alfred-api'
name = "alfred-api"
description = project.description
scm {
connection = 'scm:git:git@github.com:xenit-eu/alfred-api.git'
developerConnection = 'scm:git:git@github.com:xenit-eu/alfred-api.git'
url = 'https://github.com/xenit-eu/alfred-api.git'
}
developers {
developer {
id = "xenit"
name = "Xenit Solutions NV"
}
}
licenses {
license {
name = 'GNU Lesser General Public License v3.0'
url = 'https://www.gnu.org/licenses/lgpl-3.0.txt'
}
}
}
}
}
}
// Make check task always include the Maven Central requirements check
tasks.named('check').configure {
dependsOn('checkMavenCentralRequirements')
}