加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.71 KB
一键复制 编辑 原始数据 按行查看 历史
恒宇少年 提交于 2019-02-22 14:41 . hidden gpg
<?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>
<packaging>pom</packaging>
<modules>
<module>micro-job-samples</module>
<module>micro-job-autoconfigure</module>
<module>micro-job-dependencies</module>
<module>micro-job-starters</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.github.hengboy</groupId>
<artifactId>spring-boot-micro-job</artifactId>
<version>0.0.2.RELEASE</version>
<name>spring-boot-micro-job</name>
<description>
spring-boot-micro-job 是一款分布式任务执行框架
核心组件:
1. 调度中心
2. 注册中心
3. 任务生产者
4. 任务消费者
</description>
<properties>
<java.version>1.8</java.version>
<!--公共版本依赖-->
<micro.job.dependencies.version>0.0.2.RELEASE</micro.job.dependencies.version>
</properties>
<developers>
<developer>
<name>Yu Qi Yu</name>
<email>yuqiyu@vip.qq.com</email>
<organization>github</organization>
<organizationUrl>https://github.com/hengboy</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/hengboy/spring-boot-micro-job</connection>
<developerConnection>scm:git:https://github.com/hengboy/spring-boot-micro-job</developerConnection>
<url>https://github.com/hengboy/spring-boot-micro-job</url>
<tag>0.0.2.RELEASE</tag>
</scm>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>hengyu</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>hengyu</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<!--<build>
<plugins>
&lt;!&ndash;jdk version&ndash;&gt;
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
&lt;!&ndash; Source &ndash;&gt;
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
&lt;!&ndash; Javadoc &ndash;&gt;
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
&lt;!&ndash; Gpg Signature &ndash;&gt;
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>-->
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化