java-single/common/pom.xml

32 lines
1.0 KiB
XML
Raw Normal View History

2024-05-03 16:55:03 +08:00
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2024-05-02 22:25:29 +08:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.bunny</groupId>
2024-05-03 16:55:03 +08:00
<artifactId>bunny-template</artifactId>
2024-05-02 22:25:29 +08:00
<version>0.0.1-SNAPSHOT</version>
</parent>
2024-05-03 16:55:03 +08:00
2024-05-02 22:25:29 +08:00
<artifactId>common</artifactId>
<packaging>pom</packaging>
<name>common Maven Webapp</name>
<url>https://maven.apache.org</url>
<modules>
<module>service-utils</module>
<module>common-utils</module>
<module>spring-security</module>
</modules>
2024-05-03 16:55:03 +08:00
<dependencies>
<dependency>
2024-05-03 18:57:56 +08:00
<groupId>cn.bunny</groupId>
<artifactId>model</artifactId>
<version>0.0.1-SNAPSHOT</version>
2024-05-03 16:55:03 +08:00
</dependency>
2024-05-05 20:34:10 +08:00
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt</artifactId>
</dependency>
2024-05-02 22:25:29 +08:00
</dependencies>
</project>