pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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.0.0-SNAPSHOT</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>com.microsoft.sqlserver</groupId>
  57. <artifactId>sqljdbc4</artifactId>
  58. <version>4.0</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>com.alibaba</groupId>
  67. <artifactId>fastjson</artifactId>
  68. <version>1.2.74</version>
  69. </dependency>
  70. <!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
  71. <dependency>
  72. <groupId>org.postgresql</groupId>
  73. <artifactId>postgresql</artifactId>
  74. <version>42.2.14</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-test</artifactId>
  79. <scope>test</scope>
  80. <exclusions>
  81. <exclusion>
  82. <groupId>org.junit.vintage</groupId>
  83. <artifactId>junit-vintage-engine</artifactId>
  84. </exclusion>
  85. </exclusions>
  86. </dependency>
  87. </dependencies>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. </plugin>
  94. <!-- 打包时跳过测试 -->
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-surefire-plugin</artifactId>
  98. <version>2.12.4</version>
  99. <configuration>
  100. <skipTests>true</skipTests>
  101. </configuration>
  102. </plugin>
  103. </plugins>
  104. </build>
  105. </project>