- Spring Boot 3.2.1 + React 19 프로젝트 구조 - S&P Global Maritime API Bypass 및 Risk & Compliance Screening 기능 - 팀 워크플로우 v1.6.1 적용 (settings.json, hooks, workflow-version) - 프론트엔드 빌드 (Vite + TypeScript + Tailwind CSS) - 메인 카드 레이아웃 CSS Grid 전환 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
672 B
XML
23 lines
672 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>GC Nexus Repository</name>
|
|
<url>https://nexus.gc-si.dev/repository/maven-public/</url>
|
|
<mirrorOf>*</mirrorOf>
|
|
</mirror>
|
|
</mirrors>
|
|
</settings>
|