|
@@ -0,0 +1,86 @@
|
|
|
|
+<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">
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <groupId>com.sf</groupId>
|
|
|
|
+ <artifactId>maven-demo</artifactId>
|
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
|
+
|
|
|
|
+ <packaging>pom</packaging>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <name>maven-demo</name>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <url>http://maven.apache.org</url>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <modules>
|
|
|
|
+
|
|
|
|
+ <module>sub-demo</module>
|
|
|
|
+ <module>sub1-demo</module>
|
|
|
|
+ </modules>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <spring.version>6.1.12</spring.version>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <dependencyManagement>
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
|
+ <version>2.11.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.junit.jupiter</groupId>
|
|
|
|
+ <artifactId>junit-jupiter</artifactId>
|
|
|
|
+ <version>5.11.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-context</artifactId>
|
|
|
|
+
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-aop</artifactId>
|
|
|
|
+ <version>${spring.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ </dependencies>
|
|
|
|
+ </dependencyManagement>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <build>
|
|
|
|
+
|
|
|
|
+ <plugins>
|
|
|
|
+
|
|
|
|
+ <plugin>
|
|
|
|
+
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
+ <version>3.11.0</version>
|
|
|
|
+
|
|
|
|
+ <configuration>
|
|
|
|
+ <source>17</source>
|
|
|
|
+ <target>17</target>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
|
|
+ </plugins>
|
|
|
|
+ </build>
|
|
|
|
+</project>
|