2019-04-16 10:50:45 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2022-03-09 10:23:17 +08:00
<!--
2024-02-29 21:35:12 +08:00
Copyright (c) 2019 Of Him Code Technology Studio
2024-02-29 14:10:24 +08:00
Jpom is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
http://license.coscl.org.cn/MulanPSL2
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
See the Mulan PSL v2 for more details.
2022-03-09 10:23:17 +08:00
-->
2019-04-16 10:50:45 +08:00
<project xmlns= "http://maven.apache.org/POM/4.0.0"
2022-12-04 22:27:33 +08:00
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 > jpom-parent</artifactId>
2023-03-31 14:06:07 +08:00
<groupId > org.dromara.jpom</groupId>
2024-03-01 14:38:15 +08:00
<version > 2.11.3</version>
2022-12-04 22:27:33 +08:00
<relativePath > ../../pom.xml</relativePath>
</parent>
<modelVersion > 4.0.0</modelVersion>
<name > Jpom Common</name>
<artifactId > common</artifactId>
2024-03-01 14:38:15 +08:00
<version > 2.11.3</version>
2022-12-04 22:27:33 +08:00
<dependencies >
<dependency >
2022-12-08 15:23:03 +08:00
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-web</artifactId>
</dependency>
2022-12-04 22:27:33 +08:00
2022-12-08 15:23:03 +08:00
<dependency >
2022-12-24 13:45:33 +08:00
<groupId > com.alibaba.fastjson2</groupId>
<artifactId > fastjson2</artifactId>
2022-12-04 22:27:33 +08:00
</dependency>
<dependency >
<groupId > cn.hutool</groupId>
<artifactId > hutool-core</artifactId>
</dependency>
<dependency >
<groupId > cn.hutool</groupId>
<artifactId > hutool-http</artifactId>
</dependency>
<dependency >
<groupId > cn.hutool</groupId>
<artifactId > hutool-system</artifactId>
</dependency>
<dependency >
<groupId > cn.hutool</groupId>
<artifactId > hutool-extra</artifactId>
</dependency>
<dependency >
<groupId > cn.hutool</groupId>
<artifactId > hutool-crypto</artifactId>
</dependency>
<dependency >
<groupId > cn.hutool</groupId>
<artifactId > hutool-cron</artifactId>
</dependency>
2023-04-06 14:00:39 +08:00
2022-12-04 22:27:33 +08:00
<!-- aop -->
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-aop</artifactId>
</dependency>
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-compress</artifactId>
2024-02-21 16:34:24 +08:00
<version > 1.26.0</version>
2022-12-04 22:27:33 +08:00
</dependency>
2023-04-12 22:23:22 +08:00
<dependency >
<groupId > cn.keepbx.jpom</groupId>
<artifactId > jpom-core-common</artifactId>
2023-08-20 22:17:08 +08:00
<version > 1.0.5</version>
2023-04-12 22:23:22 +08:00
</dependency>
2024-01-12 22:14:09 +08:00
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-exec</artifactId>
<version > 1.4.0</version>
</dependency>
2024-02-22 21:32:05 +08:00
<dependency >
<groupId > org.dromara.jpom.plugins</groupId>
<artifactId > encrypt</artifactId>
<version > ${project.version}</version>
</dependency>
2022-12-04 22:27:33 +08:00
</dependencies>
2019-07-23 16:58:43 +08:00
</project>