swagger-spring-boot-starter

swagger integration with springboot.

License

License

Categories

Categories

Spring Boot Container Microservices Swagger Program Interface REST Frameworks
GroupId

GroupId

com.cuisongliu
ArtifactId

ArtifactId

swagger-spring-boot-starter
Last Version

Last Version

1.1
Release Date

Release Date

Type

Type

jar
Description

Description

swagger-spring-boot-starter
swagger integration with springboot.
Project URL

Project URL

https://github.com/cuisongliu/swagger-boot-starter
Source Code Management

Source Code Management

https://github.com/cuisongliu/swagger-boot-starter

Download swagger-spring-boot-starter

How to add to project

<!-- https://jarcasting.com/artifacts/com.cuisongliu/swagger-spring-boot-starter/ -->
<dependency>
    <groupId>com.cuisongliu</groupId>
    <artifactId>swagger-spring-boot-starter</artifactId>
    <version>1.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.cuisongliu/swagger-spring-boot-starter/
implementation 'com.cuisongliu:swagger-spring-boot-starter:1.1'
// https://jarcasting.com/artifacts/com.cuisongliu/swagger-spring-boot-starter/
implementation ("com.cuisongliu:swagger-spring-boot-starter:1.1")
'com.cuisongliu:swagger-spring-boot-starter:jar:1.1'
<dependency org="com.cuisongliu" name="swagger-spring-boot-starter" rev="1.1">
  <artifact name="swagger-spring-boot-starter" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.cuisongliu', module='swagger-spring-boot-starter', version='1.1')
)
libraryDependencies += "com.cuisongliu" % "swagger-spring-boot-starter" % "1.1"
[com.cuisongliu/swagger-spring-boot-starter "1.1"]

Dependencies

compile (1)

Group / Artifact Type Version
com.cuisongliu : swagger-spring-boot-autoconfigure jar 1.1

Project Modules

There are no modules declared in this project.

license license

Swagger-Spring-Boot-Starter 帮助你集成通用 [Swagger]到 Spring Boot。

Swagger-Spring-Boot-Starter will help you use [Swagger] with Spring Boot.

How to use

maven

在pom.xml加入nexus资源库(解决中国访问慢的问题,已经加入中央仓库)

Add the following nexus repository(fix china access slow problem,already append to central nexus.) to your pom.xml:

<repositories>
    <repository>
        <id>nexus</id>
        <name>nexus</name>
        <url>http://maven.cuisongliu.com/content/groups/public</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

在pom.xml加入依赖

Add the following dependency to your pom.xml:

<dependency>
   <groupId>com.cuisongliu</groupId>
   <artifactId>swagger-spring-boot-starter</artifactId>
   <version>1.1</version>
 </dependency>

gradle

在build.gradle加入nexus资源库(解决中国访问慢的问题,已经加入中央仓库)

Add the following nexus repository(fix china access slow problem,already append to central nexus.) to your build.gradle:

allprojects {
    repositories {
        mavenLocal()
        maven { url "http://maven.cuisongliu.com/content/groups/public" }
        mavenCentral()
        jcenter()
    }
}

在build.gradle加入依赖

Add the following dependency to your build.gradle:

compile "com.cuisongliu:swagger-spring-boot-starter:1+"

Example

swagger:
    version: 1.2

Versions

Version
1.1
1.0