diff --git a/.gitignore b/.gitignore index 8bd3bab3c..2362cd055 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,7 @@ build/ # Local configuration file (sdk path, etc) local.properties +gradle.properties # Proguard folder generated by Eclipse proguard/ diff --git a/build.gradle b/build.gradle index 3345e5001..bed210d01 100644 --- a/build.gradle +++ b/build.gradle @@ -31,9 +31,9 @@ repositories { } nexus { - attachSources = false + attachSources = true attachTests = false - attachJavadoc = false + attachJavadoc = true sign = true } diff --git a/gradle.properties.example b/gradle.properties.example new file mode 100644 index 000000000..609aedaa6 --- /dev/null +++ b/gradle.properties.example @@ -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