openapi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cn.mapway</groupId>
<artifactId>openapi</artifactId>
<version>1.3.4</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>cn.mapway</groupId>
<artifactId>openapi</artifactId>
<version>1.3.4</version>
<modules>
<module>openapi-view</module>
<module>openapi-ui</module>
<module>openapi-spring-boot-starter</module>
</modules>
<packaging>pom</packaging>
<name>openapi</name>
<description>ui for oas3</description>
<url>http://openapi.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/openapi.git</url>
</scm>
<developers>
<developer>
<name>zhangjianshe</name>
<email>zhangjianshe@gmail.com</email>
</developer>
</developers>
<properties>
<gpg.keyname>1F8B2CB0A3E469D2</gpg.keyname>
<!-- <gpg.keyname>8F43F628BFCC2B9A</gpg.keyname>-->
</properties>
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<distributionManagement>
<repository>
<id>ziroom-maven-central</id>
<url>http://maven.ziroom.com:8081/nexus/content/repositories/sms-d/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>uat</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<distributionManagement>
<repository>
<id>ziroom-maven-central</id>
<url>http://maven.ziroom.com:8081/nexus/content/repositories/sms-t/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>pro</id>
<distributionManagement>
<repository>
<id>ziroom-maven-central</id>
<url>http://maven.ziroom.com:8081/nexus/content/repositories/sms-online/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>release</id>
<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>${env.GPGKEY}</keyname>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>