seal-generate
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.pan-xun</groupId> <artifactId>seal-generate</artifactId> <version>1.1-RELEASE</version> </dependency>
<?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> <groupId>io.github.pan-xun</groupId> <artifactId>seal-generate</artifactId> <version>1.1-RELEASE</version> <packaging>jar</packaging> <name>seal-generate</name> <description>印模生成工具</description> <url>https://github.com/pan-xun/seal-generate</url> <dependencies> <!-- 图片处理--> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-imaging</artifactId> <version>1.0-alpha3</version> </dependency> <!-- lombok自动生成get/set方法,及log --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.18</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.0.1</version> <scope>test</scope> </dependency> </dependencies> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>pan-xun</id> <name>pan-xun</name> <email>80506810@qq.com</email> <roles> <role>Project Manager</role> <role>Architect</role> </roles> </developer> </developers> <scm> <connection>scm:git:git://github.com/simpligility/ossrh-demo.git</connection> <developerConnection>scm:git:ssh://github.com:simpligility/ossrh-demo.git</developerConnection> <url>http://github.com/simpligility/ossrh-demo/tree/master</url> </scm> <!-- 发布地址 --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <!-- <distributionManagement>--> <!-- <!– 稳定版本部署 –>--> <!-- <repository>--> <!-- <id>nexus</id>--> <!-- <name>prod</name>--> <!-- <url>http://192.168.0.180:7072/repository/prod-maven/</url>--> <!-- </repository>--> <!-- <!– 快照版本部署 –>--> <!-- <snapshotRepository>--> <!-- <id>nexus</id>--> <!-- <name>dev</name>--> <!-- <url>http://192.168.0.180:7072/repository/dev-maven/</url>--> <!-- </snapshotRepository>--> <!-- </distributionManagement>--> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <!-- central发布插件 --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>pan-xun</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> <!-- 源码生成插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- Javadoc文档生成插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <configuration> <show>private</show> <nohelp>true</nohelp> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG签名插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <configuration> <!-- <!– 3.此处executable填写你下载的路径,keyname填写你根据gpg工具生成的秘钥id–>--> <executable>D:\SoftWareBag\Git\usr\bin\gpg.exe</executable> <keyname>4673DA85C930BB94F6F55035469D4E65FFFC010E</keyname> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>