mirror of
https://github.com/hpd840321/starRiverProperty.git
synced 2026-06-09 08:20:31 +08:00
7b2bd307f1
- 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.
60 lines
2.3 KiB
XML
60 lines
2.3 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</groupId>
|
|
<artifactId>cwos-portal</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
<relativePath>../cwos-portal/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>cwos-portal-interface</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>cwos-portal-interface</name>
|
|
<description>源码来自反编译;依赖已收紧为本地可闭合集合(去掉原 POM 中 dist/core 等私服缺失项)。</description>
|
|
|
|
<properties>
|
|
<fastjson.version>1.2.83</fastjson.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>cn.cloudwalk.cloud</groupId>
|
|
<artifactId>cloudwalk-common-result</artifactId>
|
|
<version>3.7.2-Brussels-SRX</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.cloudwalk.cloud</groupId>
|
|
<artifactId>cloudwalk-common-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.15.3</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.cloudwalk.cloud</groupId>
|
|
<artifactId>cwos-component-resource-interface</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.cloudwalk</groupId>
|
|
<artifactId>cwos-device-pkg-stub</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>fastjson</artifactId>
|
|
<version>${fastjson.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|