spring-taybct-single-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.mangocrisp</groupId> <artifactId>spring-taybct-single-archetype</artifactId> <version>3.2.2</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.mangocrisp</groupId> <artifactId>spring-taybct-single-archetype</artifactId> <version>3.2.2</version> <packaging>maven-archetype</packaging> <name>spring-taybct-single-archetype</name> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.2.1</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>3.2.1</version> </plugin> </plugins> </pluginManagement> <plugins> <!--central 发布插件--> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.5.0</version> <extensions>true</extensions> <configuration> <publishingServerId>taybct</publishingServerId> </configuration> </plugin> <!-- Gpg Signature --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <useAgent>true</useAgent> <!--<passphraseServerId>${gpg.keyname}</passphraseServerId>--> </configuration> </execution> </executions> </plugin> </plugins> </build> <description>Spring TayBct Single Archetype</description> <url>https://github.com/mangocrisp/spring-taybct-single</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <organization> <name>io.github.mangocrisp</name> <url>https://github.com/mangocrisp</url> </organization> <developers> <developer> <id>crisp</id> <name>Mango Crisp</name> <email>15014633363@163.com</email> <url>https://mangocrisp.github.io</url> <roles> <role>Project Manager</role> <role>Architect</role> </roles> <organization>io.github.mangocrisp</organization> <organizationUrl>https://github.com/mangocrisp</organizationUrl> <timezone>Asia/Shanghai</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/mangocrisp/spring-taybct-single.git</connection> <developerConnection>scm:git:https://gitee.com/mangocrisp/spring-taybct-single.git</developerConnection> <url>https://github.com/mangocrisp/spring-taybct-single</url> </scm> </project>