add item commands

This commit is contained in:
2026-04-01 18:18:05 +08:00
commit c9ae8e02e1
246 changed files with 51813 additions and 0 deletions

16
settings.xml Normal file
View File

@@ -0,0 +1,16 @@
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>sonatype-nexus-releases</id>
<username>${env.ossrhuser}</username>
<password>${env.ossrhpassword}</password>
</server>
<server>
<id>sonatype-nexus-snapshots</id>
<username>${env.ossrhuser}</username>
<password>${env.ossrhpassword}</password>
</server>
</servers>
</settings>