-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
90 lines (85 loc) · 3.28 KB
/
Copy pathpom.xml
File metadata and controls
90 lines (85 loc) · 3.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.javamodern</groupId>
<artifactId>examples-parent</artifactId>
<version>0.1.0</version>
<packaging>pom</packaging>
<!-- 各特性模块按 Task 4/6/8/9/10/11 逐个注册到此,保证任意时刻 reactor 合法 -->
<modules>
<module>record</module>
<module>virtual-thread</module>
<module>var</module>
<module>sealed</module>
<module>switch</module>
<module>text-blocks</module>
<!-- JVM 与运行时更新(GC 演进)演示模块 -->
<module>epsilon-gc</module>
<module>zgc</module>
<module>generational-zgc</module>
<!-- JDK 25 语言/库特性演示模块 -->
<module>instance-main</module>
<module>flexible-constructor</module>
<module>scoped-values</module>
<!-- 特性缺口补全:标准库 / 模式匹配 -->
<module>string-api</module>
<module>collection-factories</module>
<module>instanceof-pattern</module>
<module>pattern-switch</module>
<module>sequenced-collections</module>
<module>http-client</module>
<module>stream-optional</module>
<module>files</module>
<module>helpful-npe</module>
<module>jpms</module>
<module>small-lang</module>
</modules>
<properties>
<maven.compiler.release>17</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.11.0</junit.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-toolchains-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>toolchain</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.5.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>3.1.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>