Fix missing source/javadoc archives
This commit is contained in:
parent
dcf62a8ac5
commit
c57b0d3ef4
|
@ -24,6 +24,7 @@ build/
|
||||||
|
|
||||||
# Local configuration file (sdk path, etc)
|
# Local configuration file (sdk path, etc)
|
||||||
local.properties
|
local.properties
|
||||||
|
gradle.properties
|
||||||
|
|
||||||
# Proguard folder generated by Eclipse
|
# Proguard folder generated by Eclipse
|
||||||
proguard/
|
proguard/
|
||||||
|
|
|
@ -31,9 +31,9 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
nexus {
|
nexus {
|
||||||
attachSources = false
|
attachSources = true
|
||||||
attachTests = false
|
attachTests = false
|
||||||
attachJavadoc = false
|
attachJavadoc = true
|
||||||
sign = true
|
sign = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
#
|
||||||
|
# GPG settings
|
||||||
|
#
|
||||||
|
|
||||||
|
# gpg key id
|
||||||
|
#signing.keyId=DEADBEEF
|
||||||
|
# gpg keyring (this is the default gnupg keyring containing private keys)
|
||||||
|
#signing.secretKeyRingFile=/home/ubuntu/.gnupg/secring.gpg
|
||||||
|
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
#
|
||||||
|
# nexus settings
|
||||||
|
#
|
||||||
|
|
||||||
|
# the nexus username used for log in
|
||||||
|
#nexusUsername=ubuntu
|
||||||
|
# the nexus password
|
||||||
|
#nexusPassword=correcthorsebatterystaple
|
Loading…
Reference in New Issue