代理记账中心后端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

109 行
3.5 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.nsgk</groupId>
  7. <artifactId>agentcenter-sdk</artifactId>
  8. <version>1.0.0nsgk1</version>
  9. <packaging>jar</packaging>
  10. <name>NSGK agentcenter-sdk</name>
  11. <description>NS代理中心SDK</description>
  12. <url>https://www.nongshen.net</url>
  13. <properties>
  14. <lombok.version>1.16.18</lombok.version>
  15. <hutool.version>5.5.4</hutool.version>
  16. <fastjson.version>2.0.34</fastjson.version>
  17. <java.version>1.8</java.version>
  18. <project.sourceEncoding>UTF-8</project.sourceEncoding>
  19. </properties>
  20. <build>
  21. <plugins>
  22. <plugin>
  23. <groupId>org.apache.maven.plugins</groupId>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <configuration>
  26. <source>${java.version}</source>
  27. <target>${java.version}</target>
  28. <encoding>${project.sourceEncoding}</encoding>
  29. </configuration>
  30. </plugin>
  31. </plugins>
  32. </build>
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- lombok -->
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. <version>${lombok.version}</version>
  40. </dependency>
  41. <!-- hutool -->
  42. <dependency>
  43. <groupId>cn.hutool</groupId>
  44. <artifactId>hutool-all</artifactId>
  45. <version>${hutool.version}</version>
  46. </dependency>
  47. <!-- 阿里JSON解析器 -->
  48. <dependency>
  49. <groupId>com.alibaba.fastjson2</groupId>
  50. <artifactId>fastjson2</artifactId>
  51. <version>${fastjson.version}</version>
  52. </dependency>
  53. </dependencies>
  54. </dependencyManagement>
  55. <dependencies>
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>cn.hutool</groupId>
  62. <artifactId>hutool-all</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.alibaba.fastjson2</groupId>
  66. <artifactId>fastjson2</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>javax.servlet</groupId>
  70. <artifactId>javax.servlet-api</artifactId>
  71. <version>4.0.1</version>
  72. <scope>compile</scope>
  73. </dependency>
  74. </dependencies>
  75. <repositories>
  76. <repository>
  77. <id>public</id>
  78. <name>aliyun nexus</name>
  79. <url>https://maven.aliyun.com/repository/public</url>
  80. <releases>
  81. <enabled>true</enabled>
  82. </releases>
  83. </repository>
  84. </repositories>
  85. <pluginRepositories>
  86. <pluginRepository>
  87. <id>public</id>
  88. <name>aliyun nexus</name>
  89. <url>https://maven.aliyun.com/repository/public</url>
  90. <releases>
  91. <enabled>true</enabled>
  92. </releases>
  93. <snapshots>
  94. <enabled>false</enabled>
  95. </snapshots>
  96. </pluginRepository>
  97. </pluginRepositories>
  98. </project>