api-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.mapway</groupId> <artifactId>api-tools</artifactId> <version>3.20.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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>cn.mapway</groupId> <artifactId>api-tools</artifactId> <packaging>pom</packaging> <version>3.20.0</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.encoding>UTF-8</maven.compiler.encoding> <java.version>1.8</java.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <!-- <gpg.keyname>1F8B2CB0A3E469D2</gpg.keyname>--> <gpg.keyname>A8F40F67559C6E42BCBBBCDAEAEDD178CD598BBA</gpg.keyname> </properties> <name>api-tools</name> <description>auto gen doc from api with ui</description> <url>http://api-tools.mapway.cn</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>https://github.com/zhangjianshe/api-tools</url> </scm> <developers> <developer> <name>zhangjianshe</name> <email>zhangjianshe@gmail.com</email> </developer> </developers> <modules> <module>api-tools-view</module> <!-- <module>api-tools-test</module>--> <module>api-tools-doc</module> </modules> <build> <plugins> </plugins> </build> <profiles> <profile> <id>release</id> <distributionManagement> <repository> <id>sonatype_oss</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <build> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.6</version> <extensions>true</extensions> <configuration> <serverId>sonatype_oss</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>package-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>package-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- GPG --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>