102 lines
3.2 KiB
XML
102 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright © 2026 Qiantong Technology Co., Ltd.
|
|
qModel Model Platform(Open Source Edition)
|
|
*
|
|
License:
|
|
Released under the Apache License, Version 2.0.
|
|
You may use, modify, and distribute this software for commercial purposes
|
|
under the terms of the License.
|
|
*
|
|
Special Notice:
|
|
All derivative versions are strictly prohibited from modifying or removing
|
|
the default system logo and copyright information.
|
|
For brand customization, please apply for brand customization authorization via official channels.
|
|
*
|
|
More information: https://qmodel.qiantong.tech/business.html
|
|
*
|
|
============================================================================
|
|
*
|
|
版权所有 © 2026 江苏千桐科技有限公司
|
|
qModel 模型平台(开源版)
|
|
*
|
|
许可协议:
|
|
本项目基于 Apache License 2.0 开源协议发布,
|
|
允许在遵守协议的前提下进行商用、修改和分发。
|
|
*
|
|
特别说明:
|
|
所有衍生版本不得修改或移除系统默认的 LOGO 和版权信息;
|
|
如需定制品牌,请通过官方渠道申请品牌定制授权。
|
|
*
|
|
更多信息请访问:https://qmodel.qiantong.tech/business.html
|
|
-->
|
|
|
|
<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">
|
|
<parent>
|
|
<artifactId>qmodel-framework</artifactId>
|
|
<groupId>tech.qiantong</groupId>
|
|
<version>1.0.1</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>qmodel-security</artifactId>
|
|
|
|
<description>
|
|
anivia-security 框架核心
|
|
</description>
|
|
|
|
<dependencies>
|
|
<!-- SpringBoot Web容器 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- spring security 安全认证 -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 阿里JSON解析器 -->
|
|
<dependency>
|
|
<groupId>com.alibaba.fastjson2</groupId>
|
|
<artifactId>fastjson2</artifactId>
|
|
</dependency>
|
|
|
|
<!--常用工具类 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
|
|
<!--redis -->
|
|
<dependency>
|
|
<groupId>tech.qiantong</groupId>
|
|
<artifactId>qmodel-redis</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
<version>5.8.31</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>tech.qiantong</groupId>
|
|
<artifactId>qmodel-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- system-api模块 -->
|
|
<dependency>
|
|
<groupId>tech.qiantong</groupId>
|
|
<artifactId>qmodel-module-system-api</artifactId>
|
|
<version>1.0.1</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|