- CLAUDE.md: Java/Spring Boot/Maven 프로젝트 가이드 - .claude/settings.json: Maven 빌드 도구 권한 설정 - .claude/rules/: Java 코드 스타일, 네이밍, 테스트 규칙 - .githooks/pre-commit: Maven 컴파일 검증 - .mvn/settings.xml: Nexus 프록시 레포지토리 미러 - .sdkmanrc: JDK 17 버전 고정
53 lines
1.8 KiB
XML
53 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
프로젝트 레벨 Maven 설정
|
|
Nexus 프록시 레포지토리를 통해 의존성을 관리합니다.
|
|
|
|
사용법: ./mvnw -s .mvn/settings.xml clean compile
|
|
또는 MAVEN_OPTS에 설정: export MAVEN_OPTS="-s .mvn/settings.xml"
|
|
|
|
Nexus 서버: http://211.208.115.83:9081
|
|
- maven-public: Maven Central + Spring + 내부 라이브러리 통합
|
|
-->
|
|
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0
|
|
https://maven.apache.org/xsd/settings-1.2.0.xsd">
|
|
|
|
<mirrors>
|
|
<mirror>
|
|
<id>nexus</id>
|
|
<name>GCSC Nexus Repository</name>
|
|
<url>http://211.208.115.83:9081/repository/maven-public/</url>
|
|
<mirrorOf>*</mirrorOf>
|
|
</mirror>
|
|
</mirrors>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>nexus</id>
|
|
<repositories>
|
|
<repository>
|
|
<id>central</id>
|
|
<url>http://central</url>
|
|
<releases><enabled>true</enabled></releases>
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>central</id>
|
|
<url>http://central</url>
|
|
<releases><enabled>true</enabled></releases>
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<activeProfiles>
|
|
<activeProfile>nexus</activeProfile>
|
|
</activeProfiles>
|
|
|
|
</settings>
|