Files
hpd840321 7b2bd307f1 Initial commit: reorganized source tree
- backend/: 13 Maven modules (cw-elevator-application, cloudwalk-cloud, intelligent-cwoscomponent, ninca-crk, etc.)
- frontend/: 4 Vue projects (elevator-front, cwos-portal, alarm-front, front_acs) + decompiled + scripts
- scripts/: build, test-env, tools (Docker Compose, service templates, API parity)
- docs/: AGENTS.md, superpowers specs, architecture docs
- .gitignore: standard Java/Maven exclusions

Moved from legacy maven-*/ root layout to backend/ organized structure.
2026-05-09 09:56:45 +08:00

45 lines
2.6 KiB
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>cn.cloudwalk.ninca</groupId>
<artifactId>ninca-common-component-organization-reactor</artifactId>
<version>2.9.2-xinghewan</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>cwos-component-organization-data</artifactId>
<name>cwos-component-organization-data</name>
<description>数据层:MyBatis Mapper、Entity、DAO、DTO</description>
<dependencies>
<dependency>
<groupId>cn.cloudwalk.ninca</groupId>
<artifactId>cwos-component-organization-interface</artifactId>
</dependency>
<dependency><groupId>lib.ext</groupId><artifactId>mybatis-3.4.5</artifactId><version>1.0</version><scope>system</scope><systemPath>${all-lib.dir}/mybatis-3.4.5.jar</systemPath></dependency>
<dependency><groupId>lib.ext</groupId><artifactId>jackson-annotations-2.11.2</artifactId><version>1.0</version><scope>system</scope><systemPath>${all-lib.dir}/jackson-annotations-2.11.2.jar</systemPath></dependency>
<dependency><groupId>lib.ext</groupId><artifactId>lombok-1.18.2</artifactId><version>1.0</version><scope>system</scope><systemPath>${all-lib.dir}/lombok-1.18.2.jar</systemPath></dependency>
<dependency><groupId>lib.ext</groupId><artifactId>spring-core-4.3.29.RELEASE</artifactId><version>1.0</version><scope>system</scope><systemPath>${all-lib.dir}/spring-core-4.3.29.RELEASE.jar</systemPath></dependency>
<dependency><groupId>lib.ext</groupId><artifactId>commons-lang3-3.3.2</artifactId><version>1.0</version><scope>system</scope><systemPath>${all-lib.dir}/commons-lang3-3.3.2.jar</systemPath></dependency>
<!-- all-lib/ system deps for CloudWalk 3.2.0 line -->
<dependency>
<groupId>cn.cloudwalk.cloud</groupId>
<artifactId>cloudwalk-common-result</artifactId>
<version>3.2.0</version>
<scope>system</scope>
<systemPath>${all-lib.dir}/cloudwalk-common-result-3.2.0-Brussels-SRX.jar</systemPath>
</dependency>
<dependency>
<groupId>cn.cloudwalk.cloud</groupId>
<artifactId>cloudwalk-common-data</artifactId>
<version>3.5.2</version>
<scope>system</scope>
<systemPath>${all-lib.dir}/cloudwalk-common-data-3.5.2-Brussels-SRX.jar</systemPath>
</dependency>
</dependencies>
</project>