scoa-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.egd-prodigal</groupId>
<artifactId>scoa-archetype</artifactId>
<version>1.0</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.egd-prodigal</groupId>
<artifactId>scoa-archetype</artifactId>
<version>1.0</version>
<packaging>maven-archetype</packaging>
<description>
scoa 架构骨架项目
</description>
<name>scoa-archetype</name>
<url>https://github.com/egd-prodigal/scoa-archetype</url>
<developers>
<developer>
<id>1</id>
<name>生一鸣</name>
<email>yeeminshon@outlook.com</email>
<url>https://yeemin.site</url>
<roles>
<role>manager</role>
<role>developer</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:egd-prodigal/scoa-archetype.git</connection>
<developerConnection>scm:git:git@github.com:egd-prodigal/scoa-archetype.git</developerConnection>
<url>git@github.com:egd-prodigal/scoa-archetype.git</url>
</scm>
<issueManagement>
<system>Github Issue</system>
<url>https://github.com/egd-prodigal/scoa-archetype/issues</url>
</issueManagement>
<licenses>
<license>
<name>MIT</name>
<url>https://github.com/egd-prodigal/scoa-archetype/blob/main/LICENSE</url>
</license>
</licenses>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>3.0.1</version>
</extension>
</extensions>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-archetype-plugin</artifactId>
<version>3.0.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>release</id>
<distributionManagement>
<snapshotRepository>
<id>oss</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>oss</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>oss</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<extensions>true</extensions>
<configuration>
<serverId>oss</serverId>
<nexusUrl>https://s01.oss.sonatype.org</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>