pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>item-management-1phase</artifactId>
  7. <groupId>com.dayou</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>gen</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>1.7</maven.compiler.source>
  15. <maven.compiler.target>1.7</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>cn.smallbun.screw</groupId>
  20. <artifactId>screw-core</artifactId>
  21. <version>1.0.4</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.dayou</groupId>
  25. <artifactId>domain</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>junit</groupId>
  30. <artifactId>junit</artifactId>
  31. <version>4.11</version>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-generator</artifactId>
  37. <version>3.3.2</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.apache.velocity</groupId>
  41. <artifactId>velocity-engine-core</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. </dependency>
  47. <!--模板代码生成-->
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-freemarker</artifactId>
  51. </dependency>
  52. </dependencies>
  53. <build>
  54. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  55. <plugins>
  56. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  57. <plugin>
  58. <artifactId>maven-clean-plugin</artifactId>
  59. <version>3.1.0</version>
  60. </plugin>
  61. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  62. <plugin>
  63. <artifactId>maven-resources-plugin</artifactId>
  64. <version>3.0.2</version>
  65. </plugin>
  66. <plugin>
  67. <artifactId>maven-compiler-plugin</artifactId>
  68. <version>3.8.0</version>
  69. </plugin>
  70. <plugin>
  71. <artifactId>maven-surefire-plugin</artifactId>
  72. <version>2.22.1</version>
  73. </plugin>
  74. <plugin>
  75. <artifactId>maven-jar-plugin</artifactId>
  76. <version>3.0.2</version>
  77. </plugin>
  78. <plugin>
  79. <artifactId>maven-install-plugin</artifactId>
  80. <version>2.5.2</version>
  81. </plugin>
  82. <plugin>
  83. <artifactId>maven-deploy-plugin</artifactId>
  84. <version>2.8.2</version>
  85. </plugin>
  86. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  87. <plugin>
  88. <artifactId>maven-site-plugin</artifactId>
  89. <version>3.7.1</version>
  90. </plugin>
  91. <plugin>
  92. <artifactId>maven-project-info-reports-plugin</artifactId>
  93. <version>3.0.0</version>
  94. </plugin>
  95. </plugins>
  96. </pluginManagement>
  97. </build>
  98. </project>