springboot-mvc-architype-template-archetype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.rournashike</groupId> <artifactId>springboot-mvc-architype-template-archetype</artifactId> <version>1.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.rournashike</groupId> <artifactId>springboot-mvc-architype-template-archetype</artifactId> <version>1.1.0</version> <!-- <packaging>maven-archetype</packaging>--> <name>springboot-mvc-architype-template-archetype</name> <properties> <java.version>1.8</java.version> <maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-checksum-plugin.version>1.10</maven-checksum-plugin.version> </properties> <build> <extensions> <extension> <groupId>org.apache.maven.archetype</groupId> <artifactId>archetype-packaging</artifactId> <version>3.2.0</version> </extension> </extensions> <plugins> <plugin> <groupId>net.nicoulaj.maven.plugins</groupId> <artifactId>checksum-maven-plugin</artifactId> <version>${maven-checksum-plugin.version}</version> <executions> <execution> <id>create-checksums</id> <goals> <goal>artifacts</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <encoding>UTF-8</encoding> <aggregate>true</aggregate> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <additionalparam>-Xdoclint:none</additionalparam> <javadocExecutable> D:\environment\Java\jdk1.8.0_192\bin\javadoc </javadocExecutable> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <artifactId>maven-archetype-plugin</artifactId> <version>3.2.0</version> </plugin> </plugins> </pluginManagement> </build> <description>rournashike</description> <url>https://gitee.com/rournashike/springboot-mvc-architype-template</url> <developers> <developer> <name>rournashike</name> <email>2057473561@qq.com</email> <organization>rournashike</organization> <organizationUrl>https://github.com/rournashike</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <connection>scm:git:git@gitee.com:rournashike/rwgl7g4fvv.git</connection> <developerConnection>scm:git:git@gitee.com:rournashike/rwgl7g4fvv.git</developerConnection> <tag>master</tag> <url>scm:git:git@gitee.com:rournashike/rwgl7g4fvv.git</url> </scm> <distributionManagement> <snapshotRepository> <id>central</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>central</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <!-- 使用最新版本 --> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> <!-- 绑定到 jar 目标 --> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>