项目初始化

This commit is contained in:
2026-04-13 11:50:14 +08:00
commit 8de2fdc8a4
163 changed files with 10815 additions and 0 deletions

24
tools/pom.xml Normal file
View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.njcn.gather</groupId>
<artifactId>CN_Tool</artifactId>
<version>1.0.0</version>
</parent>
<artifactId>tools</artifactId>
<packaging>pom</packaging>
<name>tools</name>
<description>Retained utility aggregator for platform capabilities.</description>
<modules>
<!-- Key refactor point: business-side tool modules are removed, and only
the activation capability is retained in the tools aggregator. -->
<module>activate-tool</module>
</modules>
</project>