代理记账中心后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

107 lines
3.4 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. <description>NS代理中心SDK</description>
  11. <properties>
  12. <lombok.version>1.16.18</lombok.version>
  13. <hutool.version>5.5.4</hutool.version>
  14. <fastjson.version>2.0.23</fastjson.version>
  15. <java.version>1.8</java.version>
  16. <project.sourceEncoding>UTF-8</project.sourceEncoding>
  17. </properties>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-compiler-plugin</artifactId>
  23. <configuration>
  24. <source>${java.version}</source>
  25. <target>${java.version}</target>
  26. <encoding>${project.sourceEncoding}</encoding>
  27. </configuration>
  28. </plugin>
  29. </plugins>
  30. </build>
  31. <dependencyManagement>
  32. <dependencies>
  33. <!-- lombok -->
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. <version>${lombok.version}</version>
  38. </dependency>
  39. <!-- hutool -->
  40. <dependency>
  41. <groupId>cn.hutool</groupId>
  42. <artifactId>hutool-all</artifactId>
  43. <version>${hutool.version}</version>
  44. </dependency>
  45. <!-- 阿里JSON解析器 -->
  46. <dependency>
  47. <groupId>com.alibaba.fastjson2</groupId>
  48. <artifactId>fastjson2</artifactId>
  49. <version>${fastjson.version}</version>
  50. </dependency>
  51. </dependencies>
  52. </dependencyManagement>
  53. <dependencies>
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>cn.hutool</groupId>
  60. <artifactId>hutool-all</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba.fastjson2</groupId>
  64. <artifactId>fastjson2</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>javax.servlet</groupId>
  68. <artifactId>javax.servlet-api</artifactId>
  69. <version>4.0.1</version>
  70. <scope>compile</scope>
  71. </dependency>
  72. </dependencies>
  73. <repositories>
  74. <repository>
  75. <id>public</id>
  76. <name>aliyun nexus</name>
  77. <url>https://maven.aliyun.com/repository/public</url>
  78. <releases>
  79. <enabled>true</enabled>
  80. </releases>
  81. </repository>
  82. </repositories>
  83. <pluginRepositories>
  84. <pluginRepository>
  85. <id>public</id>
  86. <name>aliyun nexus</name>
  87. <url>https://maven.aliyun.com/repository/public</url>
  88. <releases>
  89. <enabled>true</enabled>
  90. </releases>
  91. <snapshots>
  92. <enabled>false</enabled>
  93. </snapshots>
  94. </pluginRepository>
  95. </pluginRepositories>
  96. </project>