pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. <artifactId>happy-boot-module-flexjob</artifactId>
  7. <version>2.1.0</version>
  8. <name>happywork</name>
  9. <parent>
  10. <artifactId>happy-boot-parent</artifactId>
  11. <groupId>org.jeecgframework.boot</groupId>
  12. <version>2.1.0</version>
  13. </parent>
  14. <repositories>
  15. <repository>
  16. <id>aliyun</id>
  17. <name>aliyun Repository</name>
  18. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  19. <snapshots>
  20. <enabled>false</enabled>
  21. </snapshots>
  22. </repository>
  23. <repository>
  24. <id>jeecg</id>
  25. <name>jeecg Repository</name>
  26. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  27. <snapshots>
  28. <enabled>false</enabled>
  29. </snapshots>
  30. </repository>
  31. </repositories>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.jeecgframework.boot</groupId>
  35. <artifactId>happy-boot-module-system</artifactId>
  36. <version>2.1.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.jeecgframework.boot</groupId>
  40. <artifactId>happy-boot-module-common</artifactId>
  41. <version>2.1.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.jeecgframework.boot</groupId>
  45. <artifactId>happy-boot-module-pay</artifactId>
  46. <version>2.1.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.jeecgframework.boot</groupId>
  50. <artifactId>happy-boot-module-econtract</artifactId>
  51. <version>2.1.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.jeecgframework.boot</groupId>
  55. <artifactId>happy-boot-module-settlement</artifactId>
  56. <version>2.1.0</version>
  57. </dependency>
  58. <!--腾讯云sdk-->
  59. <dependency>
  60. <groupId>com.tencentcloudapi</groupId>
  61. <artifactId>tencentcloud-sdk-java</artifactId>
  62. <!-- 请到https://search.maven.org/search?q=tencentcloud-sdk-java查询最新版本 -->
  63. <version>3.1.89</version>
  64. </dependency>
  65. </dependencies>
  66. <build>
  67. <finalName>happywork</finalName>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-maven-plugin</artifactId>
  72. </plugin>
  73. </plugins>
  74. </build>
  75. </project>