pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>2.0-RELEASE</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>febs-server-generator</artifactId>
  12. <name>FEBS-Server-Generator</name>
  13. <description>FEBS-Server-Generator代码生成器</description>
  14. <properties>
  15. <febs-cloud.version>2.0-RELEASE</febs-cloud.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cc.mrbird</groupId>
  20. <artifactId>febs-common-datasource-starter</artifactId>
  21. <version>${febs-cloud.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cc.mrbird</groupId>
  25. <artifactId>febs-common-doc-starter</artifactId>
  26. <version>${febs-cloud.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>cc.mrbird</groupId>
  30. <artifactId>febs-common-security-starter</artifactId>
  31. <version>${febs-cloud.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.freemarker</groupId>
  39. <artifactId>freemarker</artifactId>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-maven-plugin</artifactId>
  47. </plugin>
  48. </plugins>
  49. </build>
  50. </project>