wg-basic/basic-pojo/pom.xml

85 lines
2.7 KiB
XML
Raw Normal View History

2021-01-24 21:21:46 +08:00
<?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>wg-basic</artifactId>
<groupId>ink.wgink</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>basic-pojo</artifactId>
<dependencies>
2021-01-28 12:13:15 +08:00
<!-- tomcat start -->
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<scope>compile</scope>
</dependency>
<!-- tomcat end -->
2021-01-25 12:31:40 +08:00
<!-- spring start -->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
2022-07-30 17:26:40 +08:00
<scope>provided</scope>
2021-01-25 12:31:40 +08:00
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
2022-07-30 22:11:21 +08:00
<scope>provided</scope>
2021-01-25 12:31:40 +08:00
</dependency>
<!-- spring end -->
2021-01-24 21:21:46 +08:00
<!-- swagger start -->
2022-05-12 16:05:42 +08:00
2021-01-24 21:21:46 +08:00
<dependency>
<groupId>io.springfox</groupId>
2022-05-12 16:05:42 +08:00
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
2021-01-24 21:21:46 +08:00
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-spring-ui</artifactId>
</dependency>
<!-- swagger end -->
<!-- Servlet|JSP|JSTL start -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
</dependency>
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
</dependency>
<!-- Servlet|JSP|JSTL end -->
2021-09-24 11:35:56 +08:00
<!-- wgink start -->
<dependency>
<groupId>ink.wgink</groupId>
<artifactId>basic-annotation</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- wgink end -->
2021-11-30 13:59:49 +08:00
<!-- netty start -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<scope>provided</scope>
</dependency>
<!-- netty end -->
2021-01-24 21:21:46 +08:00
</dependencies>
</project>