|
38 | 38 | <poi.version>5.4.0</poi.version> |
39 | 39 | <log4j2.version>2.21.1</log4j2.version> |
40 | 40 | <commons-compress.version>1.26.1</commons-compress.version> |
| 41 | + <fastjson-version>2.0.52</fastjson-version> |
41 | 42 | </properties> |
42 | 43 |
|
43 | 44 | <modules> |
44 | | - <!-- 共享库 --> |
45 | | - <module>shared/domain-common</module> |
46 | | - <module>shared/security-common</module> |
47 | | - |
48 | 45 | <!-- 核心服务 --> |
49 | | - <module>services/data-management-service</module> |
50 | | - <module>services/data-collection-service</module> |
51 | | - <module>services/operator-market-service</module> |
52 | | - <module>services/data-cleaning-service</module> |
53 | | - <module>services/data-synthesis-service</module> |
54 | | - <module>services/data-annotation-service</module> |
55 | | - <module>services/data-evaluation-service</module> |
56 | | - <module>services/pipeline-orchestration-service</module> |
57 | | - <module>services/execution-engine-service</module> |
58 | | - |
59 | | - <!-- RAG服务 --> |
60 | | - <module>services/rag-indexer-service</module> |
61 | | - <module>services/rag-query-service</module> |
62 | | - |
63 | | - <!-- 主启动模块 --> |
64 | | - <module>services/main-application</module> |
| 46 | + <module>services</module> |
65 | 47 |
|
66 | 48 | <!-- API Gateway微服务 --> |
67 | 49 | <module>api-gateway</module> |
68 | 50 | </modules> |
69 | 51 |
|
| 52 | + <dependencies> |
| 53 | + <dependency> |
| 54 | + <groupId>org.projectlombok</groupId> |
| 55 | + <artifactId>lombok</artifactId> |
| 56 | + </dependency> |
| 57 | + </dependencies> |
| 58 | + |
70 | 59 | <dependencyManagement> |
71 | 60 | <dependencies> |
72 | 61 | <dependency> |
|
158 | 147 | <version>${commons-compress.version}</version> |
159 | 148 | </dependency> |
160 | 149 |
|
| 150 | + <dependency> |
| 151 | + <groupId>com.alibaba.fastjson2</groupId> |
| 152 | + <artifactId>fastjson2</artifactId> |
| 153 | + <version>${fastjson-version}</version> |
| 154 | + </dependency> |
| 155 | + |
161 | 156 | </dependencies> |
162 | 157 | </dependencyManagement> |
163 | 158 |
|
164 | | - <dependencies> |
165 | | - <dependency> |
166 | | - <groupId>org.springframework.boot</groupId> |
167 | | - <artifactId>spring-boot-starter-web</artifactId> |
168 | | - <version>${spring-boot.version}</version> |
169 | | - <exclusions> |
170 | | - <exclusion> |
171 | | - <groupId>org.springframework.boot</groupId> |
172 | | - <artifactId>spring-boot-starter-logging</artifactId> |
173 | | - </exclusion> |
174 | | - </exclusions> |
175 | | - </dependency> |
176 | | - |
177 | | - <dependency> |
178 | | - <groupId>org.springframework.boot</groupId> |
179 | | - <artifactId>spring-boot-starter</artifactId> |
180 | | - <version>${spring-boot.version}</version> |
181 | | - <exclusions> |
182 | | - <exclusion> |
183 | | - <groupId>org.springframework.boot</groupId> |
184 | | - <artifactId>spring-boot-starter-logging</artifactId> |
185 | | - </exclusion> |
186 | | - </exclusions> |
187 | | - </dependency> |
188 | | - |
189 | | - <dependency> |
190 | | - <groupId>com.baomidou</groupId> |
191 | | - <artifactId>mybatis-plus-spring-boot3-starter</artifactId> |
192 | | - <version>${mybatis-plus.version}</version> |
193 | | - </dependency> |
194 | | - <dependency> |
195 | | - <groupId>com.baomidou</groupId> |
196 | | - <artifactId>mybatis-plus-jsqlparser</artifactId> |
197 | | - </dependency> |
198 | | - |
199 | | - <!-- Log4j2 API --> |
200 | | - <dependency> |
201 | | - <groupId>org.springframework.boot</groupId> |
202 | | - <artifactId>spring-boot-starter-log4j2</artifactId> |
203 | | - <version>${spring-boot.version}</version> |
204 | | - </dependency> |
205 | | - |
206 | | - <dependency> |
207 | | - <groupId>org.projectlombok</groupId> |
208 | | - <artifactId>lombok</artifactId> |
209 | | - <version>${lombok.version}</version> |
210 | | - </dependency> |
211 | | - |
212 | | - <dependency> |
213 | | - <groupId>org.mapstruct</groupId> |
214 | | - <artifactId>mapstruct</artifactId> |
215 | | - <version>${mapstruct.version}</version> |
216 | | - </dependency> |
217 | | - |
218 | | - <dependency> |
219 | | - <groupId>org.apache.poi</groupId> |
220 | | - <artifactId>poi</artifactId> |
221 | | - <version>${poi.version}</version> |
222 | | - </dependency> |
223 | | - </dependencies> |
224 | | - |
225 | 159 | <build> |
226 | 160 | <plugins> |
227 | 161 | <plugin> |
|
0 commit comments