ssyx/common/common-util/pom.xml

45 lines
1.3 KiB
XML
Raw Permalink Normal View History

2024-04-01 18:38:57 +08:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2024-04-01 18:25:16 +08:00
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>com.atguigu</groupId>
<artifactId>common</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<artifactId>common-util</artifactId>
<packaging>jar</packaging>
<name>common-util</name>
<url>https://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
2024-04-01 18:38:57 +08:00
<!--添加依赖-->
2024-04-01 18:25:16 +08:00
<dependencies>
2024-04-01 18:38:57 +08:00
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</dependency>
2024-04-01 18:25:16 +08:00
2024-04-01 18:38:57 +08:00
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
</dependency>
<dependency>
<groupId>com.atguigu</groupId>
<artifactId>model</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
2024-04-01 18:25:16 +08:00
</dependencies>
</project>