.flattened-pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.jt.cloud</groupId>
  6. <artifactId>jt-module-system</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>jt-module-system</name>
  10. <description>system 模块下,我们放通用业务,支撑上层的核心业务。
  11. 例如说:用户、部门、权限、数据字典等等</description>
  12. <repositories>
  13. <repository>
  14. <id>huaweicloud</id>
  15. <name>huawei</name>
  16. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  17. </repository>
  18. <repository>
  19. <id>aliyunmaven</id>
  20. <name>aliyun</name>
  21. <url>https://maven.aliyun.com/repository/public</url>
  22. </repository>
  23. <repository>
  24. <snapshots>
  25. <enabled>false</enabled>
  26. </snapshots>
  27. <id>spring-milestones</id>
  28. <name>Spring Milestones</name>
  29. <url>https://repo.spring.io/milestone</url>
  30. </repository>
  31. <repository>
  32. <releases>
  33. <enabled>false</enabled>
  34. </releases>
  35. <id>spring-snapshots</id>
  36. <name>Spring Snapshots</name>
  37. <url>https://repo.spring.io/snapshot</url>
  38. </repository>
  39. </repositories>
  40. </project>