123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Copyright (c) 2019 Of Him Code Technology Studio
- Jpom is licensed under Mulan PSL v2.
- You can use this software according to the terms and conditions of the Mulan PSL v2.
- You may obtain a copy of Mulan PSL v2 at:
- http://license.coscl.org.cn/MulanPSL2
- THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
- See the Mulan PSL v2 for more details.
- -->
- <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">
- <parent>
- <artifactId>jpom-plugins-parent</artifactId>
- <groupId>org.dromara.jpom.plugins</groupId>
- <version>2.11.12.1</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>webhook</artifactId>
- <name>plugin-webhook</name>
- <properties>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.dromara.jpom</groupId>
- <artifactId>common</artifactId>
- <scope>provided</scope>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.1.1</version>
- <configuration>
- <archive>
- <manifest>
- <!-- 是否指定项目classpath下的依赖 -->
- <addClasspath>true</addClasspath>
- <!-- 指定依赖的时候声明前缀 -->
- <classpathPrefix>./</classpathPrefix>
- </manifest>
- <manifestEntries>
- <!-- 项目版本号 -->
- <Jpom-Project-Version>${project.version}</Jpom-Project-Version>
- <!-- 打包时间 -->
- <Jpom-Timestamp>${maven.build.timestamp}</Jpom-Timestamp>
- <Jpom-Type>${project.artifactId}</Jpom-Type>
- <Implementation-URL>https://gitee.com/dromara/Jpom</Implementation-URL>
- </manifestEntries>
- </archive>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|