pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. <parent>
  6. <artifactId>railway</artifactId>
  7. <groupId>com.railway</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>railway-business</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework</groupId>
  15. <artifactId>spring-tx</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework</groupId>
  19. <artifactId>spring-context</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.projectlombok</groupId>
  23. <artifactId>lombok</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.railway</groupId>
  27. <artifactId>railway-common</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.hibernate.validator</groupId>
  31. <artifactId>hibernate-validator</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.swagger</groupId>
  35. <artifactId>swagger-annotations</artifactId>
  36. </dependency>
  37. <!-- 个推 -->
  38. <dependency>
  39. <groupId>com.gexin.platform</groupId>
  40. <artifactId>gexin-rp-sdk-http</artifactId>
  41. <version>${getui-http.version}</version>
  42. <scope>system</scope>
  43. <systemPath>${project.basedir}/src/main/resources/lib/gexin-rp-sdk-http-4.1.2.1.jar</systemPath>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>com.gexin.platform</groupId>
  47. <artifactId>gexin-rp-sdk-template</artifactId>
  48. </exclusion>
  49. <exclusion>
  50. <groupId>com.gexin.platform</groupId>
  51. <artifactId>gexin-rp-sdk-base</artifactId>
  52. </exclusion>
  53. <exclusion>
  54. <groupId>com.gexin.platform</groupId>
  55. <artifactId>gexin-rp-fastjson</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.gexin.platform</groupId>
  61. <artifactId>gexin-rp-sdk-base</artifactId>
  62. <version>${getui-base.version}</version>
  63. <scope>system</scope>
  64. <systemPath>${project.basedir}/src/main/resources/lib/gexin-rp-sdk-base-4.0.0.38.jar</systemPath>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.gexin.platform</groupId>
  68. <artifactId>gexin-rp-sdk-template</artifactId>
  69. <version>${getui-template.version}</version>
  70. <scope>system</scope>
  71. <systemPath>${project.basedir}/src/main/resources/lib/gexin-rp-sdk-template-4.0.0.31.jar</systemPath>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.gexin.platform</groupId>
  75. <artifactId>gexin-rp-fastjson</artifactId>
  76. <version>${getui-fastjson.version}</version>
  77. <scope>system</scope>
  78. <systemPath>${project.basedir}/src/main/resources/lib/gexin-rp-fastjson-1.0.0.7.jar</systemPath>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.google.protobuf</groupId>
  82. <artifactId>protobuf-java</artifactId>
  83. <version>${getui-fastjson.version}</version>
  84. <scope>system</scope>
  85. <systemPath>${project.basedir}/src/main/resources/lib/protobuf-java-3.19.1.jar</systemPath>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.railway</groupId>
  89. <artifactId>railway-system</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.railway</groupId>
  93. <artifactId>railway-framework</artifactId>
  94. </dependency>
  95. </dependencies>
  96. <properties>
  97. <maven.compiler.source>8</maven.compiler.source>
  98. <maven.compiler.target>8</maven.compiler.target>
  99. </properties>
  100. </project>