pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>huimv.eartag2.new</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <!-- <packaging>pom</packaging>-->
  12. <packaging>jar</packaging>
  13. <artifactId>huimv-eartag2-common</artifactId>
  14. <version>0.0.2-SNAPSHOT</version>
  15. <!-- <distributionManagement>-->
  16. <!-- <repository>-->
  17. <!-- <id>rdc-releases</id>-->
  18. <!-- <url>https://repo.rdc.aliyun.com/repository/136471-release-drEU5y/</url>-->
  19. <!-- </repository>-->
  20. <!-- <snapshotRepository>-->
  21. <!-- <id>rdc-snapshots</id>-->
  22. <!-- <url>https://repo.rdc.aliyun.com/repository/136471-snapshot-WhviYl/</url>-->
  23. <!-- </snapshotRepository>-->
  24. <!-- </distributionManagement>-->
  25. <dependencies>
  26. <dependency>
  27. <groupId>com.auth0</groupId>
  28. <artifactId>java-jwt</artifactId>
  29. <version>3.3.0</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.jsonwebtoken</groupId>
  33. <artifactId>jjwt</artifactId>
  34. <version>0.9.1</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.belerweb</groupId>
  38. <artifactId>pinyin4j</artifactId>
  39. <version>2.5.1</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>commons-lang</groupId>
  43. <artifactId>commons-lang</artifactId>
  44. <version>2.6</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.baomidou</groupId>
  49. <artifactId>mybatis-plus-boot-starter</artifactId>
  50. <version>3.4.2</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.baomidou</groupId>
  54. <artifactId>mybatis-plus-extension</artifactId>
  55. <version>3.4.2</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.baomidou</groupId>
  59. <artifactId>mybatis-plus-generator</artifactId>
  60. <version>3.2.0</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>net.sf.json-lib</groupId>
  64. <artifactId>json-lib</artifactId>
  65. <version>2.2.3</version>
  66. <classifier>jdk15</classifier>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework</groupId>
  70. <artifactId>spring-webmvc</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.tomcat.embed</groupId>
  74. <artifactId>tomcat-embed-core</artifactId>
  75. </dependency>
  76. </dependencies>
  77. <!-- 后加 -->
  78. <!-- <build>-->
  79. <!-- <resources>-->
  80. <!-- <resource>-->
  81. <!-- <directory>src/main/java</directory>-->
  82. <!-- <includes>-->
  83. <!-- <include>**/*.*</include>-->
  84. <!-- </includes>-->
  85. <!-- <excludes>-->
  86. <!-- <exclude>**/*.java</exclude>-->
  87. <!-- </excludes>-->
  88. <!-- <filtering>false</filtering>-->
  89. <!-- </resource>-->
  90. <!-- </resources>-->
  91. <!-- <plugins>-->
  92. <!-- <plugin>-->
  93. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  94. <!-- <artifactId>maven-compiler-plugin</artifactId>-->
  95. <!-- <configuration>-->
  96. <!-- <source>8</source>-->
  97. <!-- <target>8</target>-->
  98. <!-- </configuration>-->
  99. <!-- </plugin>-->
  100. <!-- <plugin>-->
  101. <!-- <groupId>org.springframework.boot</groupId>-->
  102. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  103. <!-- <configuration>-->
  104. <!-- &lt;!&ndash;-->
  105. <!-- 1. 这里要指定你的springboot项目的主启动类的全类名-->
  106. <!-- 2. 大家不要把这个插件放到父项目的依赖中,哪个项目需要打包,就放到哪个项目的依赖下-->
  107. <!-- &ndash;&gt;-->
  108. <!-- <mainClass>com.huimv.eartag2.common</mainClass>-->
  109. <!-- </configuration>-->
  110. <!-- </plugin>-->
  111. <!-- </plugins>-->
  112. <!-- </build>-->
  113. <!-- <build>-->
  114. <!-- <finalName>${project.artifactId}</finalName>-->
  115. <!-- </build>-->
  116. <!-- <build>-->
  117. <!-- <plugins>-->
  118. <!-- &lt;!&ndash; &ndash;&gt;-->
  119. <!-- <plugin>-->
  120. <!-- <groupId>org.springframework.boot</groupId>-->
  121. <!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
  122. <!-- </plugin>-->
  123. <!-- &lt;!&ndash; &ndash;&gt;-->
  124. <!-- <plugin>-->
  125. <!-- <groupId>org.apache.maven.plugins</groupId>-->
  126. <!-- <artifactId>maven-resources-plugin</artifactId>-->
  127. <!-- <version>2.6</version>-->
  128. <!-- </plugin>-->
  129. <!-- </plugins>-->
  130. <!-- </build>-->
  131. </project>