.flattened-pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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-framework</artifactId>
  7. <version>2.6.1-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <description>该包是技术组件,每个子包,代表一个组件。每个组件包括两部分:
  10. 1. core 包:是该组件的核心封装
  11. 2. config 包:是该组件基于 Spring 的配置
  12. 技术组件,也分成两类:
  13. 1. 框架组件:和我们熟悉的 MyBatis、Redis 等等的拓展
  14. 2. 业务组件:和业务相关的组件的封装,例如说数据字典、操作日志等等。
  15. 如果是业务组件,Maven 名字会包含 biz</description>
  16. <repositories>
  17. <repository>
  18. <id>huaweicloud</id>
  19. <name>huawei</name>
  20. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  21. </repository>
  22. <repository>
  23. <id>aliyunmaven</id>
  24. <name>aliyun</name>
  25. <url>https://maven.aliyun.com/repository/public</url>
  26. </repository>
  27. <repository>
  28. <snapshots>
  29. <enabled>false</enabled>
  30. </snapshots>
  31. <id>spring-milestones</id>
  32. <name>Spring Milestones</name>
  33. <url>https://repo.spring.io/milestone</url>
  34. </repository>
  35. <repository>
  36. <releases>
  37. <enabled>false</enabled>
  38. </releases>
  39. <id>spring-snapshots</id>
  40. <name>Spring Snapshots</name>
  41. <url>https://repo.spring.io/snapshot</url>
  42. </repository>
  43. </repositories>
  44. </project>