Advertisement
Guest User

dependencies

a guest
Jul 27th, 2020
5,719
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. ===Plugin=====
  2. <plugin>
  3. <groupId>io.swagger.codegen.v3</groupId>
  4. <artifactId>swagger-codegen-maven-plugin</artifactId>
  5. <version>3.0.18</version>
  6. <executions>
  7. <execution>
  8. <goals>
  9. <goal>generate</goal>
  10. </goals>
  11. <configuration>
  12. <inputSpec>${project.basedir}/src/main/resources/library-api.yaml</inputSpec>
  13. <language>spring</language>
  14. <output>${project.build.directory}/generated-sources/</output>
  15. <generateSupportingFiles>false</generateSupportingFiles>
  16. <apiPackage>com.michael.libraryservice.api</apiPackage>
  17. <modelPackage>com.michael.libraryservice.models</modelPackage>
  18. <configOptions>
  19. <interfaceOnly>true</interfaceOnly>
  20. </configOptions>
  21. </configuration>
  22. </execution>
  23. </executions>
  24. </plugin>
  25.  
  26.  
  27. =====Dependencies======
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-context</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.swagger</groupId>
  34. <artifactId>swagger-annotations</artifactId>
  35. <version>1.5.21</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>io.swagger</groupId>
  39. <artifactId>swagger-models</artifactId>
  40. <version>1.6.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.fasterxml.jackson.core</groupId>
  44. <artifactId>jackson-annotations</artifactId>
  45. <version>2.10.3</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>javax.validation</groupId>
  49. <artifactId>validation-api</artifactId>
  50. </dependency>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement