pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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-powerjob</artifactId>
  7. <version>2.1.0</version>
  8. <parent>
  9. <artifactId>happy-boot-parent</artifactId>
  10. <groupId>org.jeecgframework.boot</groupId>
  11. <version>2.1.0</version>
  12. </parent>
  13. <repositories>
  14. <repository>
  15. <id>aliyun</id>
  16. <name>aliyun Repository</name>
  17. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  18. <snapshots>
  19. <enabled>false</enabled>
  20. </snapshots>
  21. </repository>
  22. <repository>
  23. <id>jeecg</id>
  24. <name>jeecg Repository</name>
  25. <url>http://maven.jeecg.org/nexus/content/repositories/jeecg</url>
  26. <snapshots>
  27. <enabled>false</enabled>
  28. </snapshots>
  29. </repository>
  30. </repositories>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.jeecgframework.boot</groupId>
  34. <artifactId>happy-boot-module-system</artifactId>
  35. <version>2.1.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>happy-boot-module-common</artifactId>
  40. <version>2.1.0</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.jeecgframework.boot</groupId>
  44. <artifactId>happy-boot-module-payment</artifactId>
  45. <version>2.1.0</version>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <finalName>powerjob</finalName>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-maven-plugin</artifactId>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. </project>