-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
46 lines (35 loc) · 1.56 KB
/
gradle.properties
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
POM_NAME=Mr Polite
POM_ARTIFACT_ID=mrpolite
POM_PACKAGING=aar
VERSION_NAME=1.0.7.2-SNAPSHOT
VERSION_CODE=1
GROUP=com.github.ignaciotcrespo
POM_DESCRIPTION=Mr Polite will give you any object you need, if you ask gently.
POM_URL=https://github.com/ignaciotcrespo/mrpolite
POM_SCM_URL=https://github.com/ignaciotcrespo/mrpolite.git
POM_SCM_CONNECTION=https://github.com/ignaciotcrespo/mrpolite.git
POM_SCM_DEV_CONNECTION=https://github.com/ignaciotcrespo/mrpolite.git
POM_LICENCE_NAME=MIT License
POM_LICENCE_URL=http://www.opensource.org/licenses/mit-license.php
POM_LICENCE_DIST=repo
POM_DEVELOPER_ID=itcrespo
POM_DEVELOPER_NAME=Ignacio Tomas Crespo
NEXUS_USERNAME=itcrespo
# use command line, e.g. gradle clean uploadArchives -PNEXUS_PASSWORD=XXX -Psigning.password=XXX
# or set value in ~/.gradle/gradle.properties
#NEXUS_PASSWORD=
SNAPSHOT_REPOSITORY_URL=https://oss.sonatype.org/content/repositories/snapshots
RELEASE_REPOSITORY_URL=https://oss.sonatype.org/service/local/staging/deploy/maven2
signing.keyId=49BE6234
# use command line, e.g. gradle clean uploadArchives -PNEXUS_PASSWORD=XXX -Psigning.password=XXX
# or set value in ~/.gradle/gradle.properties
# signing.password=
# signing.secretKeyRingFile=
#Enable daemon
org.gradle.daemon=true
# Find out the best heap size (Xmx2048m) for your project build. Just trial and error...
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
# Modularise your project and enable parallel build
org.gradle.parallel=true
# Enable configure on demand.
org.gradle.configureondemand=true