Skip to content

Instantly share code, notes, and snippets.

@sats17
Last active March 14, 2021 06:34
Show Gist options
  • Save sats17/6b5f083dceecb08d164fe18ae2447805 to your computer and use it in GitHub Desktop.
Save sats17/6b5f083dceecb08d164fe18ae2447805 to your computer and use it in GitHub Desktop.
## dependency
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swaggerhub-maven-plugin</artifactId>
<version>1.0.8</version>
</dependency>
## plugin
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swaggerhub-maven-plugin</artifactId>
<version>1.0.8</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>upload</goal>
</goals>
<configuration>
<api>swagger-api</api>
<owner>sats17</owner>
<version>1.0.1-SNAPSHOT</version>
<inputFile>${project.build.directory}/file.json</inputFile>
<token>${api-key}</token>
<uploadType>inputFile</uploadType>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment