pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>cc.mrbird</groupId>
  7. <artifactId>febs-server</artifactId>
  8. <version>1.6-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-server-system</artifactId>
  12. <version>1.6-RELEASE</version>
  13. <name>FEBS-Server-System</name>
  14. <description>FEBS-Server-System微服务系统模块</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>io.springfox</groupId>
  18. <artifactId>springfox-swagger2</artifactId>
  19. <version>2.9.2</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>io.springfox</groupId>
  23. <artifactId>springfox-swagger-ui</artifactId>
  24. <version>2.9.2</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.freemarker</groupId>
  28. <artifactId>freemarker</artifactId>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <plugins>
  33. <plugin>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-maven-plugin</artifactId>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. </project>