pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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.1.RELEASE</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.gitee.codegenerator</groupId>
  12. <artifactId>generator</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. <description>A code generator - 一款代码生成器</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. <dependency>
  29. <groupId>org.apache.ant</groupId>
  30. <artifactId>ant</artifactId>
  31. <version>1.9.4</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.velocity</groupId>
  35. <artifactId>velocity</artifactId>
  36. <version>1.7</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.xerial</groupId>
  40. <artifactId>sqlite-jdbc</artifactId>
  41. <version>3.21.0.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>mysql</groupId>
  45. <artifactId>mysql-connector-java</artifactId>
  46. <version>8.0.20</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.sourceforge.jtds</groupId>
  50. <artifactId>jtds</artifactId>
  51. <version>1.2.2</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.oracle</groupId>
  55. <artifactId>ojdbc6</artifactId>
  56. <version>12.1.0.1-atlassian-hosted</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-test</artifactId>
  61. <scope>test</scope>
  62. <exclusions>
  63. <exclusion>
  64. <groupId>org.junit.vintage</groupId>
  65. <artifactId>junit-vintage-engine</artifactId>
  66. </exclusion>
  67. </exclusions>
  68. </dependency>
  69. </dependencies>
  70. <build>
  71. <plugins>
  72. <plugin>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-maven-plugin</artifactId>
  75. </plugin>
  76. <!-- 打包时跳过测试 -->
  77. <plugin>
  78. <groupId>org.apache.maven.plugins</groupId>
  79. <artifactId>maven-surefire-plugin</artifactId>
  80. <version>2.12.4</version>
  81. <configuration>
  82. <skipTests>true</skipTests>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. </project>