forked from libgdx/gdx-controllers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.gradle
91 lines (76 loc) · 2.89 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
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
apply plugin: 'maven'
apply plugin: 'signing'
afterEvaluate { project ->
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
if (isLocalBuild()) {
repository(url: getLocalRepositoryUrl())
} else if (isReleaseBuild()) {
repository(url: getReleaseRepositoryUrl()) {
authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())
}
} else {
snapshotRepository(url: getSnapshotRepositoryUrl()) {
authentication(userName: getRepositoryUsername(), password: getRepositoryPassword())
}
}
pom.project {
name 'gdx-controllers'
description 'Game Controller Extension for libGDX'
url 'https://github.com/libgdx/gdx-controllers'
scm {
url 'scm:[email protected]:libgdx/gdx-controllers.git'
connection 'scm:[email protected]:libgdx/gdx-controllers.git'
developerConnection 'scm:[email protected]:libgdx/gdx-controllers.git'
}
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}
developers {
developer {
id = "Tomski"
name = "Tom Wojciechowski"
email = "[email protected]"
}
developer {
id 'MrStahlfelge'
name 'Benjamin Schulte'
email '[email protected]'
}
}
}
}
}
}
signing {
if (isReleaseBuild()) {
useGpgCmd()
}
required { isReleaseBuild() }
sign configurations.archives
}
task libraryJar(type: Jar, dependsOn:classes) {
from sourceSets.main.output.classesDirs
from configurations.custom.collect { it.isDirectory() ? it : zipTree(it) }
classifier = 'library'
}
task sourcesJar(type: Jar, dependsOn:classes) {
from sourceSets.main.allSource
classifier = 'sources'
}
task javadocJar(type: Jar, dependsOn:javadoc) {
from javadoc.destinationDir
classifier = 'javadoc'
}
artifacts {
archives libraryJar
archives sourcesJar
archives javadocJar
}
}