org.zalando.stups:spring-boot-stups-swagger-codegen-ui

Parent pom.xml that can be used by STUPS Maven projects

License

License

Categories

Categories

Spring Boot Container Microservices Swagger Program Interface REST Frameworks
GroupId

GroupId

org.zalando.stups
ArtifactId

ArtifactId

spring-boot-stups-swagger-codegen-ui
Last Version

Last Version

0.5.0-beta-1
Release Date

Release Date

Type

Type

jar
Description

Description

Parent pom.xml that can be used by STUPS Maven projects
Project Organization

Project Organization

Zalando SE

Download spring-boot-stups-swagger-codegen-ui

How to add to project

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

Dependencies

compile (3)

Group / Artifact Type Version
org.springframework.boot : spring-boot-autoconfigure jar
org.springframework.boot : spring-boot-starter-web jar
io.springfox : springfox-swagger-ui jar 2.0.1

test (5)

Group / Artifact Type Version
org.slf4j : slf4j-api jar
org.springframework : spring-test jar
org.springframework.boot : spring-boot-starter-test jar
junit : junit jar
org.assertj : assertj-core jar 2.0.0

Project Modules

There are no modules declared in this project.

Swagger-Codegen-Tooling

Build Status Javadoc Release Maven Central License

The project provides some tooling around Maven and Gradle* to generate code from OpenAPI-Specs. It comes with custom-templates to support Spring-MVC/Spring-Boot projects. Instead of generating code only once when a project starts (design phase), code will be generated at every build to make sure your code is in sync with your spec. So controllers/resources are generated as interfaces developers have to implement then. So changes in the spec should be reflected immediately on build/compile-step.

Getting started with Maven

To get started in a Maven project just add the following plugin-definition to you pom.xml.

    <plugin>
        <groupId>org.zalando.maven.plugins</groupId>
        <artifactId>swagger-codegen-maven-plugin</artifactId>
        <version>${version}</version>
        <configuration>
            <apiFile>${project.basedir}/src/main/resources/api.yaml</apiFile>
            <language>springinterfaces</language>
            <apiPackage>com.example.project.api</apiPackage>
            <modelPackage>com.example.project.model</modelPackage>
        </configuration>
        <executions>
            <execution>
                <id>swagger-codegen</id>
                <goals>
                    <goal>codegen</goal>
                </goals>
            </execution>
        </executions>
    </plugin>

According to your OpenAPI-spec (api.yaml) code will be generated in ${basedir}/target/generated-sources/swagger-codegen

More examples how to use the Maven-Plugin can be found in the integration-test section.

Development/Contribution

Build

The project itself uses Maven:

mvn clean install

Run with integration-tests enabled

mvn clean install -Pintegration

TODO's

API-SPEC

https://github.com/OAI/OpenAPI-Specification/blob/OpenAPI.next/versions/3.0.md

Contributions

Many thanks to ePaul for reporting issues and code-contributions.

License

Copyright 2015-2017 Zalando SE

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

org.zalando.stups

STUPS by Zalando

THE PROJECTS IN THIS ORG ARE NO LONGER ACTIVELY MAINTAINED

Versions

Version
0.5.0-beta-1
0.4.38
0.4.37
0.4.36
0.4.35
0.4.34
0.4.33
0.4.31
0.4.30
0.4.29
0.4.28
0.4.27
0.4.26
0.4.25
0.4.24
0.4.23
0.4.22
0.4.21
0.4.20
0.4.19
0.4.18
0.4.17
0.4.16
0.4.15
0.4.14
0.4.13
0.4.12
0.4.11
0.4.10
0.4.9
0.4.8
0.4.7
0.4.6
0.4.5
0.4.4