pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>mall</artifactId>
  6. <groupId>com.txz</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>mall-api</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.txz</groupId>
  15. <artifactId>common</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>cn.hutool</groupId>
  19. <artifactId>hutool-all</artifactId>
  20. <version>5.8.39</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <!-- <dependency> -->
  24. <!-- <groupId>org.projectlombok</groupId> -->
  25. <!-- <artifactId>lombok</artifactId> -->
  26. <!-- <version>1.18.10</version> -->
  27. <!-- <scope>provided</scope> -->
  28. <!-- </dependency> -->
  29. <!-- <dependency> -->
  30. <!-- <groupId>com.alibaba</groupId> -->
  31. <!-- <artifactId>fastjson</artifactId> -->
  32. <!-- <version>1.2.69</version> -->
  33. <!-- <scope>compile</scope> -->
  34. <!-- </dependency> -->
  35. <!-- <dependency> -->
  36. <!-- <groupId>cn.hutool</groupId> -->
  37. <!-- <artifactId>hutool-all</artifactId> -->
  38. <!-- <version>RELEASE</version> -->
  39. <!-- <scope>compile</scope> -->
  40. <!-- </dependency> -->
  41. <!-- <dependency> -->
  42. <!-- <groupId>io.swagger</groupId> -->
  43. <!-- <artifactId>swagger-annotations</artifactId> -->
  44. <!-- <version>1.6.2</version> -->
  45. <!-- <scope>compile</scope> -->
  46. <!-- </dependency> -->
  47. <!-- <dependency> -->
  48. <!-- <groupId>javax.validation</groupId> -->
  49. <!-- <artifactId>validation-api</artifactId> -->
  50. <!-- </dependency> -->
  51. <!-- <dependency> -->
  52. <!-- <groupId>com.fasterxml.jackson.core</groupId> -->
  53. <!-- <artifactId>jackson-annotations</artifactId> -->
  54. <!-- </dependency> -->
  55. <!-- <dependency> -->
  56. <!-- <groupId>org.hibernate.validator</groupId> -->
  57. <!-- <artifactId>hibernate-validator</artifactId> -->
  58. <!-- </dependency> -->
  59. <!-- <dependency>-->
  60. <!-- <groupId>org.springframework.data</groupId>-->
  61. <!-- <artifactId>spring-data-redis</artifactId>-->
  62. <!-- <scope>compile</scope>-->
  63. <!-- </dependency>-->
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <!-- 要将源码放上去,需要加入这个插件 -->
  68. <plugin>
  69. <artifactId>maven-source-plugin</artifactId>
  70. <version>3.2.0</version>
  71. <configuration>
  72. <attach>true</attach>
  73. </configuration>
  74. <executions>
  75. <execution>
  76. <phase>compile</phase>
  77. <goals>
  78. <goal>jar</goal>
  79. </goals>
  80. </execution>
  81. </executions>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>