25 lines
865 B
XML
25 lines
865 B
XML
<?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>
|