You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.8 KiB
Plaintext
54 lines
1.8 KiB
Plaintext
# =====================================================
|
|
# Gradle Properties Template
|
|
# =====================================================
|
|
# 이 파일을 'gradle.properties'로 복사하여 사용하세요
|
|
# Copy this file to 'gradle.properties' and configure
|
|
|
|
# =====================================================
|
|
# Nexus Repository Configuration (폐쇄망 환경)
|
|
# =====================================================
|
|
# Nexus 서버 URL (프로토콜 포함)
|
|
# Example: http://nexus.company.com:8081 or https://nexus.company.com
|
|
nexusUrl=http://nexus.your-company.com:8081
|
|
|
|
# Nexus 사용자 인증 정보
|
|
nexusUsername=your-nexus-username
|
|
nexusPassword=your-nexus-password
|
|
|
|
# =====================================================
|
|
# Maven Repository URLs (선택사항)
|
|
# =====================================================
|
|
# Maven Public Repository (proxy + hosted)
|
|
nexusMavenPublic=${nexusUrl}/repository/maven-public/
|
|
|
|
# Maven Releases Repository
|
|
nexusMavenReleases=${nexusUrl}/repository/maven-releases/
|
|
|
|
# Maven Snapshots Repository
|
|
nexusMavenSnapshots=${nexusUrl}/repository/maven-snapshots/
|
|
|
|
# =====================================================
|
|
# Build Configuration
|
|
# =====================================================
|
|
# Gradle 데몬 메모리 설정
|
|
org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
|
|
|
|
# 병렬 빌드 활성화
|
|
org.gradle.parallel=true
|
|
|
|
# 빌드 캐시 활성화
|
|
org.gradle.caching=true
|
|
|
|
# 데몬 사용
|
|
org.gradle.daemon=true
|
|
|
|
# =====================================================
|
|
# Security (선택사항)
|
|
# =====================================================
|
|
# HTTP 프로토콜 허용 여부 (보안상 권장하지 않음)
|
|
# allowInsecureProtocol=true
|
|
|
|
# 자체 서명 인증서 신뢰 여부
|
|
# systemProp.javax.net.ssl.trustStore=/path/to/truststore.jks
|
|
# systemProp.javax.net.ssl.trustStorePassword=changeit
|