pom.xml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>dom4j</groupId>
  40. <artifactId>dom4j</artifactId>
  41. <version>1.6.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.xerial</groupId>
  45. <artifactId>sqlite-jdbc</artifactId>
  46. <version>3.21.0.1</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. <version>8.0.20</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>net.sourceforge.jtds</groupId>
  55. <artifactId>jtds</artifactId>
  56. <version>1.2.2</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.oracle</groupId>
  60. <artifactId>ojdbc6</artifactId>
  61. <version>12.1.0.1-atlassian-hosted</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-test</artifactId>
  66. <scope>test</scope>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>org.junit.vintage</groupId>
  70. <artifactId>junit-vintage-engine</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. </dependency>
  74. </dependencies>
  75. <build>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. </plugin>
  81. <!-- 打包时跳过测试 -->
  82. <plugin>
  83. <groupId>org.apache.maven.plugins</groupId>
  84. <artifactId>maven-surefire-plugin</artifactId>
  85. <version>2.12.4</version>
  86. <configuration>
  87. <skipTests>true</skipTests>
  88. </configuration>
  89. </plugin>
  90. </plugins>
  91. </build>
  92. </project>