- .claude/rules: team-policy, git-workflow, code-style, naming, testing - .claude/skills: init-project, sync-team-workflow, create-mr, fix-issue - .claude/scripts: on-pre-compact, on-post-compact, on-commit (v1.2.0) - .claude/settings.json: 팀 표준 권한 allow/deny + script hooks - .githooks: commit-msg, pre-commit (mvn compile), post-checkout - .mvn/settings.xml: Nexus 미러 설정 - .editorconfig: 팀 표준 포맷 - CLAUDE.md: 팀 규칙 참조 섹션 추가 - .gitignore: !.claude/ negation 추가 (글로벌 gitignore override) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
61 lines
1.9 KiB
XML
61 lines
1.9 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 서버: https://nexus.gc-si.dev
|
|
- 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">
|
|
|
|
<servers>
|
|
<server>
|
|
<id>nexus</id>
|
|
<username>admin</username>
|
|
<password>Gcsc!8932</password>
|
|
</server>
|
|
</servers>
|
|
|
|
<mirrors>
|
|
<mirror>
|
|
<id>nexus</id>
|
|
<name>GCSC Nexus Repository</name>
|
|
<url>https://nexus.gc-si.dev/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>
|