Files
chaos_api/chaos_api_interface/pom.xml
Chaos da1bdafbb2 feat(image): add image upload functionality
- Created FileUploadResponse DTO for image upload responses
- Implemented ImageController with upload endpoint
- Defined ImageService interface for image operations
- Added ImageServiceImpl with placeholder upload logic
- Updated pom.xml to include chaos_api_domain dependency
2025-11-18 07:27:28 +08:00

37 lines
1.2 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.nopj</groupId>
<artifactId>chaos_api</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>chaos_api_interface</artifactId>
<packaging>jar</packaging>
<name>chaos_api_interface</name>
<description>Service interfaces and DTOs</description>
<dependencies>
<dependency>
<groupId>cn.nopj</groupId>
<artifactId>chaos_api_common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>cn.nopj</groupId>
<artifactId>chaos_api_domain</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>