pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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>operating</artifactId>
  6. <groupId>com.txz</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>operating-api</artifactId>
  11. <version>1.0.0-SNAPSHOT</version>
  12. <dependencies>
  13. <!-- <dependency> -->
  14. <!-- <groupId>org.projectlombok</groupId> -->
  15. <!-- <artifactId>lombok</artifactId> -->
  16. <!-- <version>1.18.10</version> -->
  17. <!-- <scope>provided</scope> -->
  18. <!-- </dependency> -->
  19. <!-- <dependency> -->
  20. <!-- <groupId>com.alibaba</groupId> -->
  21. <!-- <artifactId>fastjson</artifactId> -->
  22. <!-- <version>1.2.69</version> -->
  23. <!-- <scope>compile</scope> -->
  24. <!-- </dependency> -->
  25. <!-- <dependency> -->
  26. <!-- <groupId>cn.hutool</groupId> -->
  27. <!-- <artifactId>hutool-all</artifactId> -->
  28. <!-- <version>RELEASE</version> -->
  29. <!-- <scope>compile</scope> -->
  30. <!-- </dependency> -->
  31. <dependency>
  32. <groupId>com.txz</groupId>
  33. <artifactId>common</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.hutool</groupId>
  37. <artifactId>hutool-all</artifactId>
  38. <version>5.8.39</version>
  39. <scope>compile</scope>
  40. </dependency>
  41. <!-- <dependency> -->
  42. <!-- <groupId>org.apache.dubbo</groupId> -->
  43. <!-- <artifactId>dubbo</artifactId> -->
  44. <!-- <version>3.0.10</version> -->
  45. <!-- </dependency> -->
  46. <!-- <dependency>-->
  47. <!-- <groupId>org.springframework.data</groupId>-->
  48. <!-- <artifactId>spring-data-redis</artifactId>-->
  49. <!-- <scope>compile</scope>-->
  50. <!-- </dependency>-->
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <!-- 要将源码放上去,需要加入这个插件 -->
  55. <plugin>
  56. <artifactId>maven-source-plugin</artifactId>
  57. <version>3.2.0</version>
  58. <configuration>
  59. <attach>true</attach>
  60. </configuration>
  61. <executions>
  62. <execution>
  63. <phase>compile</phase>
  64. <goals>
  65. <goal>jar</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>