pom.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <artifactId>ghjg-item-datashare-common</artifactId>
  6. <dependencies>
  7. <dependency>
  8. <artifactId>Infrastructure</artifactId>
  9. <groupId>com.shanghaigeography</groupId>
  10. <scope>system</scope>
  11. <systemPath>${project.basedir}/libs/Infrastructure-1.1-SNAPSHOT.jar</systemPath>
  12. <version>1.1-SNAPSHOT</version>
  13. </dependency>
  14. <dependency>
  15. <artifactId>protostuff-core</artifactId>
  16. <groupId>io.protostuff</groupId>
  17. <scope>system</scope>
  18. <systemPath>${project.basedir}/libs/protostuff-core-1.6.0.jar</systemPath>
  19. <version>1.6.0</version>
  20. </dependency>
  21. <dependency>
  22. <artifactId>protostuff-api</artifactId>
  23. <groupId>io.protostuff</groupId>
  24. <scope>system</scope>
  25. <systemPath>${project.basedir}/libs/protostuff-api-1.6.0.jar</systemPath>
  26. <version>1.6.0</version>
  27. </dependency>
  28. <dependency>
  29. <artifactId>protostuff-runtime</artifactId>
  30. <groupId>io.protostuff</groupId>
  31. <scope>system</scope>
  32. <systemPath>${project.basedir}/libs/protostuff-runtime-1.6.0.jar</systemPath>
  33. <version>1.6.0</version>
  34. </dependency>
  35. <dependency>
  36. <artifactId>protostuff-collectionschema</artifactId>
  37. <groupId>io.protostuff</groupId>
  38. <scope>system</scope>
  39. <systemPath>${project.basedir}/libs/protostuff-collectionschema-1.6.0.jar</systemPath>
  40. <version>1.6.0</version>
  41. </dependency>
  42. <dependency>
  43. <artifactId>tomcat-embed-core</artifactId>
  44. <groupId>tomcat-embed-core</groupId>
  45. <scope>system</scope>
  46. <systemPath>${project.basedir}/libs/tomcat-embed-core-9.0.33.jar</systemPath>
  47. <version>9.0.33</version>
  48. </dependency>
  49. <dependency>
  50. <artifactId>bayonetutil</artifactId>
  51. <groupId>bayonetutil</groupId>
  52. <scope>system</scope>
  53. <systemPath>${project.basedir}/libs/bayonetutil.jar</systemPath>
  54. <version>1.0-SNAPSHOT</version>
  55. </dependency>
  56. <dependency>
  57. <artifactId>commons-io</artifactId>
  58. <groupId>org.apache.commons</groupId>
  59. </dependency>
  60. <dependency>
  61. <artifactId>lombok</artifactId>
  62. <groupId>org.projectlombok</groupId>
  63. </dependency>
  64. <!-- Token生成与解析-->
  65. <dependency>
  66. <artifactId>jjwt</artifactId>
  67. <groupId>io.jsonwebtoken</groupId>
  68. </dependency>
  69. </dependencies>
  70. <modelVersion>4.0.0</modelVersion>
  71. <parent>
  72. <artifactId>ghjg-item-datashare</artifactId>
  73. <groupId>com.shanghaichengdi</groupId>
  74. <version>1.0-SNAPSHOT</version>
  75. </parent>
  76. <properties>
  77. <maven.compiler.source>8</maven.compiler.source>
  78. <maven.compiler.target>8</maven.compiler.target>
  79. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  80. </properties>
  81. </project>