pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <groupId>com.api</groupId>
  6. <artifactId>code-generator</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <name>code-generator</name>
  9. <parent>
  10. <artifactId>parent</artifactId>
  11. <groupId>com.api</groupId>
  12. <version>1.0-SNAPSHOT</version>
  13. </parent>
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <maven.compiler.source>1.7</maven.compiler.source>
  17. <maven.compiler.target>1.7</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.api</groupId>
  22. <artifactId>core</artifactId>
  23. <version>1.0-SNAPSHOT</version>
  24. <scope>compile</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.mybatis.generator</groupId>
  28. <artifactId>mybatis-generator-core</artifactId>
  29. <version>1.4.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>mysql</groupId>
  33. <artifactId>mysql-connector-java</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.freemarker</groupId>
  37. <artifactId>freemarker</artifactId>
  38. <version>2.3.23</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.springfox</groupId>
  42. <artifactId>springfox-swagger2</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>io.springfox</groupId>
  46. <artifactId>springfox-swagger-ui</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.commons</groupId>
  54. <artifactId>commons-lang3</artifactId>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <resources>
  59. <resource>
  60. <directory>src/main/java</directory>
  61. <includes>
  62. <include>**/*.ftl</include>
  63. </includes>
  64. </resource>
  65. </resources>
  66. </build>
  67. </project>