-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gradle.properties
38 lines (29 loc) · 1.19 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
GROUP=io.github.jhdcruz
VERSION=1.0.0-SNAPSHOT
POM_DESCRIPTION=Abstracted cryptographic library for straightforward & hassle-free cryptographic operations for JVM applications.
POM_URL=https://github.com/jhdcruz/kipher
POM_SCM_URL=https://github.com/jhdcruz/kipher
POM_SCM_CONNECTION=scm:git:git://github.com/jhdcruz/kipher.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://gt@github.com/jhdcruz/kipher.git
POM_ISSUE_URL=https://github.com/jhdcruz/kipher/issues
POM_ISSUE_SYSTEM=GitHub
POM_LICENSE_NAME=The Apache License, Version 2.0
POM_LICENSE_URL=https://github.com/jhdcruz/kipher/blob/main/LICENSE.txt
POM_LICENSE_DIST=repo
POM_DEVELOPER_ID=jhdcruz
POM_DEVELOPER_EMAIL=jhdcruz@proton.me
POM_DEVELOPER_NAME=Joshua Hero Dela Cruz
POM_DEVELOPER_URL=https://github.com/jhdcruz
# Gradle env
kipher.toolchain.compilerTarget=11
kipher.toolchain.testLauncher=11
kipher.toolchain.languageTarget=1.8
# Gradle properties
org.gradle.vfs.watch=true
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configureondemand=true
org.gradle.kotlin.dsl.precompiled.accessors.strict=true
org.gradle.jvmargs=-Xmx824m -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError
kotlin.code.style=official