You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
140 lines
5.4 KiB
140 lines
5.4 KiB
3 months ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>3.3.5</version>
|
||
|
<relativePath/> <!-- lookup parent from repository -->
|
||
|
</parent>
|
||
|
<groupId>com.xxl.job</groupId>
|
||
|
<artifactId>xxl-job-springboot3</artifactId>
|
||
|
<version>1.0.0</version>
|
||
|
<name>xxl-job-springboot3</name>
|
||
|
<description>xxl-job-springboot3</description>
|
||
|
<packaging>pom</packaging>
|
||
|
|
||
|
<modules>
|
||
|
<module>xxl-job-admin</module>
|
||
|
<module>xxl-job-core</module>
|
||
|
</modules>
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
|
||
|
<maven.compiler.source>21</maven.compiler.source>
|
||
|
<maven.compiler.target>21</maven.compiler.target>
|
||
|
<maven.test.skip>true</maven.test.skip>
|
||
|
|
||
|
<netty.version>4.1.108.Final</netty.version>
|
||
|
<gson.version>2.10.1</gson.version>
|
||
|
|
||
|
<mysql-connector-j.version>8.3.0</mysql-connector-j.version>
|
||
|
<druid.spring.boot.3.starter.version>1.2.23</druid.spring.boot.3.starter.version>
|
||
|
<slf4j-api.version>2.0.13</slf4j-api.version>
|
||
|
<junit-jupiter.versison>5.10.2</junit-jupiter.versison>
|
||
|
<javax.annotation-api.version>1.3.2</javax.annotation-api.version>
|
||
|
|
||
|
<groovy.version>4.0.21</groovy.version>
|
||
|
<mybatis.plus.version>3.5.7</mybatis.plus.version>
|
||
|
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
|
||
|
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
|
||
|
<maven-gpg-plugin.version>3.2.3</maven-gpg-plugin.version>
|
||
|
</properties>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>GNU General Public License version 3</name>
|
||
|
<url>https://opensource.org/licenses/GPL-3.0</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<scm>
|
||
|
<tag>master</tag>
|
||
|
<url>https://github.com/xuxueli/xxl-job.git</url>
|
||
|
<connection>scm:git:https://github.com/xuxueli/xxl-job.git</connection>
|
||
|
<developerConnection>scm:git:git@github.com:xuxueli/xxl-job.git</developerConnection>
|
||
|
</scm>
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>XXL</id>
|
||
|
<name>xuxueli</name>
|
||
|
<email>931591021@qq.com</email>
|
||
|
<url>https://github.com/xuxueli</url>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<profiles>
|
||
|
|
||
|
<profile>
|
||
|
<id>release</id>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<!-- Source -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>jar-no-fork</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<!-- Javadoc -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>jar</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<doclint>none</doclint>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<!-- GPG -->
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<useAgent>false</useAgent>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>verify</phase>
|
||
|
<goals>
|
||
|
<goal>sign</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
<distributionManagement>
|
||
|
<snapshotRepository>
|
||
|
<id>oss</id>
|
||
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
||
|
</snapshotRepository>
|
||
|
<repository>
|
||
|
<id>oss</id>
|
||
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
||
|
</repository>
|
||
|
</distributionManagement>
|
||
|
</profile>
|
||
|
</profiles>
|
||
|
|
||
|
</project>
|