1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >com.wb3tech</groupId >
8+ <artifactId >kernel</artifactId >
9+ <version >0.1.0</version >
10+
11+ <properties >
12+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
13+ <maven .compiler.target>1.13</maven .compiler.target>
14+ <maven .compiler.source>1.13</maven .compiler.source>
15+ <maven .compiler.release>13</maven .compiler.release>
16+ <maven .compiler.plugin.version>3.8.1</maven .compiler.plugin.version>
17+ <maven .surefire.plugin.version>3.0.0-M4</maven .surefire.plugin.version>
18+ <junit .jupiter.version>5.6.0-M1</junit .jupiter.version>
19+ </properties >
20+
21+ <dependencies >
22+ <dependency >
23+ <groupId >org.junit.jupiter</groupId >
24+ <artifactId >junit-jupiter</artifactId >
25+ <version >${junit.jupiter.version} </version >
26+ <scope >test</scope >
27+ </dependency >
28+ </dependencies >
29+
30+ <build >
31+ <plugins >
32+ <plugin >
33+ <groupId >org.apache.maven.plugins</groupId >
34+ <artifactId >maven-compiler-plugin</artifactId >
35+ <version >${maven.compiler.plugin.version} </version >
36+ <configuration >
37+ <source >${maven.compiler.source} </source >
38+ <target >${maven.compiler.target} </target >
39+ <release >${maven.compiler.release} </release >
40+ </configuration >
41+ </plugin >
42+
43+ <plugin >
44+ <groupId >org.apache.maven.plugins</groupId >
45+ <artifactId >maven-surefire-plugin</artifactId >
46+ <version >${maven.surefire.plugin.version} </version >
47+ </plugin >
48+ </plugins >
49+ </build >
50+
51+ <distributionManagement >
52+ <repository >
53+ <id >github</id >
54+ <name >GitHub WB3Tech Kernel - Apache Maven Packages</name >
55+ <url >https://maven.pkg.github.com/WB3Tech-Kernel-Java/com.wb3tech.kernel</url >
56+ </repository >
57+ </distributionManagement >
58+
59+
60+ </project >
0 commit comments