fix: relocate cwos-portal decompiled output to correct path; remove nested directory

Former-commit-id: dc30d42a8c55ed8b2382a41dc2434233fbed9930
This commit is contained in:
反编译工作区
2026-04-29 12:09:48 +08:00
parent ea8e492076
commit e8672a3c7b
1759 changed files with 547735 additions and 280 deletions
@@ -0,0 +1,2 @@
-s
.mvn/settings.xml
@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
反应堆友好型用户 settings(通过 -s 使用,不读 ~/.m2/settings.xml):
- 仅含下面「HTTP 拦截覆盖」一条 mirror,避免 ~/.m2 里 mirrorOf=* 把反应堆 sibling 误导向私服。
- Maven 3.8.1+ 在安装目录 conf/settings.xml 内置 maven-default-http-blockermirrorOf=external:http:*),
会把 profile 里 http:// 的 Nexus 全部挡掉。此处用**同 id** 声明一个 mirrorOf=dummy 的占位镜像,
覆盖默认项,使内网 HTTP 私服可解析。若 Nexus 已改为 HTTPS,可删除 <mirrors> 段并把上面 URL 改为 https。
使用方式(二选一):
1) 本目录已配置 .mvn/maven.config,在本模块根执行 mvn 时会自动带上 -s .mvn/settings.xml
2) 手动:mvn -s .mvn/settings.xml ...
若 Nexus 拉包需要账号,请在本文件 <servers> 中按 id=nexus-public 补全(勿提交密码到 Git)。
-->
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<mirror>
<id>maven-default-http-blocker</id>
<mirrorOf>dummy</mirrorOf>
<name>Override install-dir HTTP blocker; dummy matches no repository id</name>
<url>http://0.0.0.0/</url>
</mirror>
</mirrors>
<profiles>
<profile>
<id>elevator-nexus-public</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>nexus-public</id>
<url>http://192.168.3.12:8081/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>nexus-public-plugins</id>
<url>http://192.168.3.12:8081/repository/maven-public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</settings>