forked from xpipe-io/xpipe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish.gradle
33 lines (31 loc) · 1.1 KB
/
publish.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
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = project.archivesBaseName
from components.java
pom {
name = 'XPipe Core'
description = 'Core classes used by all XPipe components.'
url = 'https://github.com/xpipe-io/xpipe/core'
licenses {
license {
name = 'Apache License 2.0'
url = 'https://github.com/xpipe-io/xpipe/LICENSE.md'
}
}
developers {
developer {
id = 'crschnick'
name = 'Christopher Schnick'
email = 'crschnick@xpipe.io'
}
}
scm {
connection = 'scm:git:git://github.com/xpipe-io/xpipe.git'
developerConnection = 'scm:git:ssh://github.com/xpipe-io/xpipe.git'
url = 'https://github.com/xpipe-io/xpipe'
}
}
}
}
}