pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.3.2.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.gitee.codegen</groupId>
  12. <artifactId>gen</artifactId>
  13. <version>1.1.0</version>
  14. <description>一款代码生成器</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.mybatis.spring.boot</groupId>
  25. <artifactId>mybatis-spring-boot-starter</artifactId>
  26. <version>2.1.3</version>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-dbcp2 -->
  29. <dependency>
  30. <groupId>org.apache.commons</groupId>
  31. <artifactId>commons-dbcp2</artifactId>
  32. <version>2.7.0</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
  35. <dependency>
  36. <groupId>org.apache.commons</groupId>
  37. <artifactId>commons-pool2</artifactId>
  38. <version>2.8.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.velocity</groupId>
  42. <artifactId>velocity</artifactId>
  43. <version>1.7</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.xerial</groupId>
  47. <artifactId>sqlite-jdbc</artifactId>
  48. <version>3.21.0.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>mysql</groupId>
  52. <artifactId>mysql-connector-java</artifactId>
  53. <version>8.0.20</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>net.sourceforge.jtds</groupId>
  57. <artifactId>jtds</artifactId>
  58. <version>1.2.2</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.oracle</groupId>
  62. <artifactId>ojdbc6</artifactId>
  63. <version>12.1.0.1-atlassian-hosted</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-starter-test</artifactId>
  68. <scope>test</scope>
  69. <exclusions>
  70. <exclusion>
  71. <groupId>org.junit.vintage</groupId>
  72. <artifactId>junit-vintage-engine</artifactId>
  73. </exclusion>
  74. </exclusions>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. </plugin>
  83. <!-- 打包时跳过测试 -->
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-surefire-plugin</artifactId>
  87. <version>2.12.4</version>
  88. <configuration>
  89. <skipTests>true</skipTests>
  90. </configuration>
  91. </plugin>
  92. </plugins>
  93. </build>
  94. </project>