pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. <parent>
  7. <artifactId>storlead-smarttrade-platform</artifactId>
  8. <groupId>com.storlead.boot</groupId>
  9. <version>1.0</version>
  10. <relativePath>../../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>storlead-system</artifactId>
  13. <packaging>jar</packaging>
  14. <name>storlead-system</name>
  15. <build>
  16. <plugins>
  17. <plugin>
  18. <groupId>org.apache.maven.plugins</groupId>
  19. <artifactId>maven-compiler-plugin</artifactId>
  20. <version>3.0</version>
  21. <configuration>
  22. <source>11</source>
  23. <target>11</target>
  24. </configuration>
  25. </plugin>
  26. </plugins>
  27. </build>
  28. <version>1.0</version>
  29. <description>common project for Spring Boot</description>
  30. <dependencies>
  31. <!-- jwt 需要,移除会报错 -->
  32. <dependency>
  33. <groupId>io.jsonwebtoken</groupId>
  34. <artifactId>jjwt</artifactId>
  35. <version>${io.jsonwebtoken.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.storlead.sales</groupId>
  39. <artifactId>sp-sales-frame</artifactId>
  40. <version>1.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.storlead.sales</groupId>
  44. <artifactId>sp-sales-common</artifactId>
  45. <version>1.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.storlead.sales</groupId>
  49. <artifactId>sp-sales-user</artifactId>
  50. <version>1.0</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>com.storlead.sales</groupId>
  54. <artifactId>sp-sales-wx</artifactId>
  55. <version>1.0</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.fasterxml.jackson.core</groupId>
  59. <artifactId>jackson-databind</artifactId>
  60. </dependency>
  61. </dependencies>
  62. </project>