加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 2.80 KB
一键复制 编辑 原始数据 按行查看 历史
It123456 提交于 2023-01-10 13:42 . init
<?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">
<parent>
<artifactId>jaka-framwork-expand-core</artifactId>
<groupId>jaka-parent</groupId>
<version>1.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<version>1.0.1</version>
<artifactId>jaka-framwork-expand-core-xbongbong</artifactId>
<description>JAKA 第三方扩张服务销帮帮相关服务封装</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<com.squareup.okhttp3>3.8.0</com.squareup.okhttp3>
</properties>
<dependencies>
<!--内部封装包 start-->
<dependency>
<artifactId>jaka-framework-common-core</artifactId>
<groupId>jaka-parent</groupId>
<version>1.0.0</version>
</dependency>
<!--内部封装包 end-->
<!--第三方扩展包 start-->
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>${com.squareup.okhttp3}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.11</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.77</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.6.3</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.3.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<version>2.5.5</version>
<scope>test</scope>
</dependency>
<!--第三方扩展包 end-->
<!--框架包 start-->
<!--框架包 end-->
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化