| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">    <parent>        <groupId>org.eco</groupId>        <artifactId>als-extra</artifactId>        <version>${revision}</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <packaging>jar</packaging>    <artifactId>powerjob-server</artifactId>    <properties>        <spring-boot.version>2.7.18</spring-boot.version>        <spring-boot-admin.version>2.7.14</spring-boot-admin.version>    </properties>    <dependencyManagement>        <dependencies>            <dependency>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-starter-parent</artifactId>                <version>${spring-boot.version}</version>                <type>pom</type>                <scope>import</scope>            </dependency>        </dependencies>    </dependencyManagement>    <dependencies>        <!-- PowerJob server-->        <dependency>            <groupId>tech.powerjob</groupId>            <artifactId>powerjob-server-starter</artifactId>            <version>${powerjob.version}</version>        </dependency>        <dependency>            <groupId>de.codecentric</groupId>            <artifactId>spring-boot-admin-starter-client</artifactId><!--            <version>${spring-boot-admin.version}</version>-->        </dependency>        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>        </dependency>        <!-- servlet包:不能使用6高版本,否则无法启动 -->        <dependency>            <groupId>jakarta.servlet</groupId>            <artifactId>jakarta.servlet-api</artifactId>            <version>4.0.4</version>        </dependency>        <dependency>            <groupId>com.dameng</groupId>            <artifactId>DmJdbcDriver18</artifactId>        </dependency>        <!-- 必须,对应hibernate的达梦数据库方言 -->        <dependency>            <groupId>com.dameng</groupId>            <artifactId>DmDialect-for-hibernate5.6</artifactId>            <version>8.1.2.192</version>        </dependency>    </dependencies>    <build>        <finalName>${project.artifactId}</finalName>        <plugins>            <plugin>                <groupId>org.springframework.boot</groupId>                <artifactId>spring-boot-maven-plugin</artifactId>                <version>${spring-boot.version}</version>                <executions>                    <execution>                        <goals>                            <goal>repackage</goal>                        </goals>                    </execution>                </executions>            </plugin>        </plugins>    </build></project>
 |