pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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>mssql-jdbc</artifactId>
  58. <version>8.4.1.jre8</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>dom4j</groupId>
  78. <artifactId>dom4j</artifactId>
  79. <version>1.6.1</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-test</artifactId>
  84. <scope>test</scope>
  85. <exclusions>
  86. <exclusion>
  87. <groupId>org.junit.vintage</groupId>
  88. <artifactId>junit-vintage-engine</artifactId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. </plugin>
  99. <!-- 打包时跳过测试 -->
  100. <plugin>
  101. <groupId>org.apache.maven.plugins</groupId>
  102. <artifactId>maven-surefire-plugin</artifactId>
  103. <version>2.12.4</version>
  104. <configuration>
  105. <skipTests>true</skipTests>
  106. </configuration>
  107. </plugin>
  108. </plugins>
  109. </build>
  110. </project>