- Remove 75 orphaned files: bypass API (models, DTOs, repositories, base classes, SQL schema), screening (models, DTOs, repositories), and CodeGenerationResult DTO - Replace favicon with navy version - Rename app title from "S&P Data Platform" to "S&P Collector" - Fix vite base path to match Spring Boot context-path (/snp-collector) - Rewrite CLAUDE.md with accurate architecture documentation 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>
|