pom.xml 2.0 KB

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