pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>flash-waimai</artifactId>
  7. <groupId>cn.enilu</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>flash-waimai-generate</artifactId>
  12. <properties>
  13. <java-version>1.8</java-version>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <nutz-version>1.r.60</nutz-version>
  16. <evo-inflector-version>1.0.1</evo-inflector-version>
  17. <velocity-version>1.7</velocity-version>
  18. <commons-cli-version>1.2</commons-cli-version>
  19. <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-jpa</artifactId>
  25. <version>${spring.boot.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.atteo</groupId>
  29. <artifactId>evo-inflector</artifactId>
  30. <version>${evo-inflector-version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>commons-cli</groupId>
  34. <artifactId>commons-cli</artifactId>
  35. <version>${commons-cli-version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.velocity</groupId>
  39. <artifactId>velocity</artifactId>
  40. <version>${velocity-version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.nutz</groupId>
  44. <artifactId>nutz</artifactId>
  45. <version>${nutz-version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>druid</artifactId>
  50. <version>1.0.27</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>mysql</groupId>
  54. <artifactId>mysql-connector-java</artifactId>
  55. <version>5.1.40</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>junit</groupId>
  59. <artifactId>junit</artifactId>
  60. <version>4.12</version>
  61. <scope>test</scope>
  62. </dependency>
  63. </dependencies>
  64. </project>