pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>org.apache.dubbo</groupId>
  33. <artifactId>dubbo</artifactId>
  34. <version>3.0.10</version>
  35. </dependency>
  36. <!-- <dependency>-->
  37. <!-- <groupId>org.springframework.data</groupId>-->
  38. <!-- <artifactId>spring-data-redis</artifactId>-->
  39. <!-- <scope>compile</scope>-->
  40. <!-- </dependency>-->
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <!-- 要将源码放上去,需要加入这个插件 -->
  45. <plugin>
  46. <artifactId>maven-source-plugin</artifactId>
  47. <version>3.2.0</version>
  48. <configuration>
  49. <attach>true</attach>
  50. </configuration>
  51. <executions>
  52. <execution>
  53. <phase>compile</phase>
  54. <goals>
  55. <goal>jar</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>