1 Star 0 Fork 23

kevincherry / spring-reading

forked from xuchengsheng / spring-reading 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pom.xml 2.34 KB
一键复制 编辑 原始数据 按行查看 历史
xuchengsheng 提交于 2024-01-03 23:05 . ExpressionParser源码分析
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<packaging>pom</packaging>
<groupId>com.xcs.spring</groupId>
<artifactId>spring-reading</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-reading</name>
<description>spring-reading</description>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<java.version>11</java.version>
<spring.version>5.3.10</spring.version>
</properties>
<modules>
<module>spring-annotation</module>
<module>spring-aware</module>
<module>spring-interface</module>
<module>spring-jsr</module>
<module>spring-core</module>
<module>spring-aop</module>
<module>spring-mvc</module>
<module>spring-resources</module>
<module>spring-metadata</module>
<module>spring-beans</module>
<module>spring-context</module>
<module>spring-factory</module>
<module>spring-env</module>
<module>spring-dataops</module>
<module>spring-spel</module>
</modules>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
</dependencies>
</project>
Java
1
https://gitee.com/kevincherry/spring-reading.git
git@gitee.com:kevincherry/spring-reading.git
kevincherry
spring-reading
spring-reading
master

搜索帮助