spring-reading./spring-context/pom.xml

18 lines
647 B
XML
Raw Normal View History

2023-11-09 13:15:38 +00: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>spring-reading</artifactId>
2023-11-09 13:15:38 +00:00
<groupId>com.xcs.spring</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-context</artifactId>
<packaging>pom</packaging>
<modules>
<module>spring-context-classPathXmlApplicationContext</module>
</modules>
2023-11-09 13:15:38 +00:00
</project>