pom.xml 2.6 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.medipath</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>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. <version>1.18.10</version>
  21. <scope>provided</scope>
  22. </dependency>
  23. <!-- <dependency>-->
  24. <!-- <groupId>com.alibaba</groupId>-->
  25. <!-- <artifactId>fastjson</artifactId>-->
  26. <!-- <version>1.2.69</version>-->
  27. <!-- </dependency>-->
  28. <!-- <dependency>-->
  29. <!-- <groupId>cn.hutool</groupId>-->
  30. <!-- <artifactId>hutool-all</artifactId>-->
  31. <!-- <version>RELEASE</version>-->
  32. <!-- <scope>compile</scope>-->
  33. <!-- </dependency>-->
  34. <!-- <dependency>-->
  35. <!-- <groupId>com.github.pagehelper</groupId>-->
  36. <!-- <artifactId>pagehelper</artifactId>-->
  37. <!-- <version>5.1.2</version>-->
  38. <!-- <scope>compile</scope>-->
  39. <!-- </dependency>-->
  40. </dependencies>
  41. <build>
  42. <plugins>
  43. <plugin>
  44. <groupId>org.apache.maven.plugins</groupId>
  45. <artifactId>maven-compiler-plugin</artifactId>
  46. <version>3.5.1</version>
  47. <configuration>
  48. <source>1.8</source>
  49. <target>1.8</target>
  50. <encoding>UTF-8</encoding>
  51. </configuration>
  52. </plugin>
  53. <!-- 要将源码放上去,需要加入这个插件 -->
  54. <plugin>
  55. <artifactId>maven-source-plugin</artifactId>
  56. <version>3.2.0</version>
  57. <configuration>
  58. <attach>true</attach>
  59. </configuration>
  60. <executions>
  61. <execution>
  62. <phase>compile</phase>
  63. <goals>
  64. <goal>jar</goal>
  65. </goals>
  66. </execution>
  67. </executions>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>