-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
54 lines (53 loc) · 1.95 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
47
48
49
50
51
52
53
######################
# project properties #
######################
projectVersion=3.2-SNAPSHOT
groupPackage=io.github.astrapi69
projectSourceCompatibility=17
projectInceptionYear=2015
projectHolderUsername=lightblueseas
projectLeaderName=Asterios Raptis
slash=/
colon=:
issuesPath=/issues
projectDescription=This project holds the api interfaces, the base model classes and the utilities classes for transform type safe models
projectScmProviderDomain=github.com
projectScmProviderUrl=https://github.com/
projectScmGitUrlPrefix=scm:git:git:@
projectScmGitUrlSuffix=.git
projectLicenseName=MIT License
projectLicenseUrl=http://www.opensource.org/licenses/mit-license.php
projectOrganizationName=Asterios Raptis
projectOrganizationUrl=https://astrapi69.github.io/
projectLicenseDistribution=repo
projectIssueManagementSystem=GitHub
projectRepositoriesReleasesRepoUrl=https://oss.sonatype.org/service/local/staging/deploy/maven2/
projectRepositoriesSnapshotsRepoUrl=https://oss.sonatype.org/content/repositories/snapshots
projectRepositoriesUserNameKey=ossrhUsername
projectRepositoriesPasswordKey=ossrhPassword
projectRepositoriesReleasesName=Sonatype Nexus Releases
projectRepositoriesSnapshotsName=Sonatype Nexus Snapshots
projectRepositoriesMavenUrl=https://plugins.gradle.org/m2/
##########################
# for deploy on sonatype #
##########################
systemProp.org.gradle.internal.publish.checksums.insecure=true
#############################
# gradle related properties #
#############################
# Enable the Gradle daemon
org.gradle.daemon=true
# Enable the build cache
org.gradle.caching=true
# Enable parallel execution
org.gradle.parallel=true
# Run Gradle in offline mode
org.gradle.offline=false
# Configure console output
org.gradle.console=auto
# Set the warning mode
org.gradle.warning.mode=summary
# Enable Configure on Demand to improve configuration time
org.gradle.configureondemand=true
# Enable VFS watching for better performance
org.gradle.vfs.watch=true