Skip to content

Commit

Permalink
Merge pull request #507 from KamToHung/springboot3
Browse files Browse the repository at this point in the history
feat(springboot3):add maven plugin
  • Loading branch information
KamToHung authored Nov 18, 2024
2 parents 6f515f3 + 3894a97 commit dc1a4bb
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
<packaging>pom</packaging>

<name>DynamicTp Project</name>
<description>🔥🔥🔥轻量级动态线程池,内置监控告警功能,基于主流配置中心(已支持Nacos、Apollo、Zookeeper、Consul、Etcd、Polaris,可通过SPI自定义实现)</description>
<description>
🔥🔥🔥轻量级动态线程池,内置监控告警功能,基于主流配置中心(已支持Nacos、Apollo、Zookeeper、Consul、Etcd、Polaris,可通过SPI自定义实现)
</description>
<url>https://github.com/yanhom1314/dynamic-tp</url>

<properties>
Expand Down Expand Up @@ -254,6 +256,21 @@
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Implementation-Title>${project.artifactId}</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Build-Time>${maven.build.timestamp}</Build-Time>
<Built-By>yanhom</Built-By>
</manifestEntries>
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down

0 comments on commit dc1a4bb

Please sign in to comment.