Coder Social home page Coder Social logo

Comments (3)

 avatar commented on August 20, 2024

swagger-springboot-codegen.zip

This is the project for which am trying to generate code. spring-boot based application

from swagger-codegen-tooling.

ePaul avatar ePaul commented on August 20, 2024

The plugin doesn't bind its goals to any life cycle phase. You'll either have to do mvn swagger-codegen:codegen, or add an execution entry to the plugin's configuration, binding it to a phase.

            <plugin>
                <groupId>org.zalando.maven.plugins</groupId>
                <artifactId>swagger-codegen-maven-plugin</artifactId>
                <version>0.4.26</version>
                <executions>
                    <execution>
                        <id>generate-from-swagger</id>
                        <goals>
                            <goal>codegen</goal>
                        </goals>
                        <phase>generate-sources</phase>
                    </execution>
                </executions>
                <configuration>
                    <apiFile>${project.basedir}/src/main/resources/petstore.json</apiFile>
                    <language>jaxrsinterfaces</language>
                    <apiPackage>com.yourcompany.api</apiPackage>
                    <modelPackage>com.yourcompany.model</modelPackage>
                </configuration>
                <!-- put template-dependency here, directly into plugin -->
                <dependencies>
                    <dependency>
                        <groupId>org.zalando.stups</groupId>
                        <artifactId>swagger-codegen-template-jaxrs-interfaces</artifactId>
                        <version>0.4.26</version>
                    </dependency>
                </dependencies>
            </plugin>

(You can also put the configuration inside the execution, in case you want to generate sources from several Swagger files.)

from swagger-codegen-tooling.

 avatar commented on August 20, 2024

Thanks Paul, that helped!

from swagger-codegen-tooling.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.