pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>my</artifactId>
  7. <groupId>com.my</groupId>
  8. <version>3.8.8</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>my-bus</artifactId>
  12. <description>
  13. 业务系统模块
  14. </description>
  15. <dependencies>
  16. <!-- <dependency>
  17. <groupId>h4a-sdk</groupId>
  18. <artifactId>h4a-sdk</artifactId>
  19. <version>1.0.6</version>
  20. <scope>system</scope>
  21. <systemPath>${pom.basedir}/src/main/resources/lib/h4a-sdk-1.0.6.jar</systemPath>
  22. </dependency>
  23. <dependency>
  24. <groupId>sso-sdk</groupId>
  25. <artifactId>sso-sdk</artifactId>
  26. <version>1.0.8</version>
  27. <scope>system</scope>
  28. <systemPath>${pom.basedir}/src/main/resources/lib/sso-sdk-1.0.8.jar</systemPath>
  29. </dependency>
  30. <dependency>
  31. <groupId>config-sdk</groupId>
  32. <artifactId>config-sdk</artifactId>
  33. <version>1.0.6</version>
  34. <scope>system</scope>
  35. <systemPath>${pom.basedir}/src/main/resources/lib/config-sdk-1.0.6.jar</systemPath>
  36. </dependency>
  37. -->
  38. <!-- 定时任务-->
  39. <dependency>
  40. <groupId>com.my</groupId>
  41. <artifactId>my-quartz</artifactId>
  42. </dependency>
  43. <!-- 通用工具-->
  44. <dependency>
  45. <groupId>com.my</groupId>
  46. <artifactId>my-common</artifactId>
  47. </dependency>
  48. <!-- 通用工具-->
  49. <dependency>
  50. <groupId>com.my</groupId>
  51. <artifactId>my-system</artifactId>
  52. </dependency>
  53. <!-- 通用工具-->
  54. <dependency>
  55. <groupId>com.my</groupId>
  56. <artifactId>my-framework</artifactId>
  57. </dependency>
  58. </dependencies>
  59. </project>