pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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-hppay</artifactId>
  7. <version>1.0.0</version>
  8. <parent>
  9. <artifactId>happy-boot-parent</artifactId>
  10. <groupId>org.jeecgframework.boot</groupId>
  11. <version>2.0.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.0.0</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.jeecgframework.boot</groupId>
  39. <artifactId>happy-boot-module-common</artifactId>
  40. <version>1.0.0</version>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. </build>
  51. </project>