| 12345678910111213141516171819202122232425262728293031 | <?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>    <parent>        <groupId>com.aizuda</groupId>        <artifactId>snail-job</artifactId>        <version>${revision}</version>        <relativePath>../pom.xml</relativePath>    </parent>    <artifactId>snail-job-server-interface</artifactId>    <name>snail-job-server-interface</name>    <description>snail-job-server-interface</description>    <packaging>pom</packaging>    <properties>        <maven.compiler.source>17</maven.compiler.source>        <maven.compiler.target>17</maven.compiler.target>        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>    </properties>    <modules>        <module>snail-job-server-service</module>        <module>snail-job-server-web</module>        <module>snail-job-server-ui</module>        <module>snail-job-server-openapi</module>    </modules></project>
 |