Last active
March 14, 2021 06:34
-
-
Save sats17/6b5f083dceecb08d164fe18ae2447805 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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