pom.xml 2.5 KB

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