pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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>com.lantone.qc</groupId>
  7. <artifactId>qc</artifactId>
  8. <version>1.0</version>
  9. </parent>
  10. <artifactId>dbanaly</artifactId>
  11. <name>dbanaly</name>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. <maven.compiler.source>1.8</maven.compiler.source>
  16. <maven.compiler.target>1.8</maven.compiler.target>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.lantone.qc</groupId>
  21. <artifactId>public</artifactId>
  22. <version>1.0</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>druid-spring-boot-starter</artifactId>
  27. <version>1.1.16</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>mybatis-plus-boot-starter</artifactId>
  32. <version>3.2.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.baomidou</groupId>
  36. <artifactId>mybatis-plus-generator</artifactId>
  37. <version>3.2.0</version>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.apache.velocity</groupId>
  42. <artifactId>velocity-engine-core</artifactId>
  43. <version>2.1</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.freemarker</groupId>
  48. <artifactId>freemarker</artifactId>
  49. <version>2.3.29</version>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.ibeetl</groupId>
  54. <artifactId>beetl</artifactId>
  55. <version>3.0.13.RELEASE</version>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.springfox</groupId>
  60. <artifactId>springfox-swagger2</artifactId>
  61. <version>2.7.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger-ui</artifactId>
  66. <version>2.7.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-web</artifactId>
  71. <version>5.1.4.RELEASE</version>
  72. </dependency>
  73. </dependencies>
  74. <!-- 私有仓库 -->
  75. <repositories>
  76. <repository>
  77. <id>nexus-releases</id>
  78. <name>Nexus Release Repository</name>
  79. <url>http://192.168.2.236:8081/repository/maven-releases/</url>
  80. </repository>
  81. </repositories>
  82. <!-- 私有仓库 -->
  83. <pluginRepositories>
  84. <pluginRepository>
  85. <id>nexus-releases</id>
  86. <name>Nexus Release Repository</name>
  87. <url>http://192.168.2.236:8081/repository/maven-releases/</url>
  88. <releases>
  89. <enabled>true</enabled>
  90. </releases>
  91. <snapshots>
  92. <enabled>true</enabled>
  93. </snapshots>
  94. </pluginRepository>
  95. </pluginRepositories>
  96. <distributionManagement>
  97. <repository>
  98. <id>nexus-releases</id>
  99. <name>Nexus Release Repository</name>
  100. <url>http://192.168.2.236:8081/repository/maven-releases/</url>
  101. </repository>
  102. <snapshotRepository>
  103. <id>nexus-snapshots</id>
  104. <name>Nexus Snapshot Repository</name>
  105. <url>http://192.168.2.236:8081/repository/maven-snapshots/</url>
  106. </snapshotRepository>
  107. </distributionManagement>
  108. <build>
  109. <finalName>dbanaly</finalName>
  110. <resources>
  111. <resource>
  112. <directory>src/main/resources</directory>
  113. <includes>
  114. <include>*.yml</include>
  115. </includes>
  116. </resource>
  117. </resources>
  118. </build>
  119. </project>