pom.xml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. <groupId>com.txz</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>2.7.18</version>
  12. </parent>
  13. <artifactId>cif</artifactId>
  14. <packaging>pom</packaging>
  15. <modules>
  16. <module>cif-service</module>
  17. <module>cif-api</module>
  18. </modules>
  19. <dependencyManagement>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.txz</groupId>
  23. <artifactId>common</artifactId>
  24. <version>1.0.0-SNAPSHOT</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-dependencies</artifactId>
  29. <version>2021.0.8</version>
  30. <type>pom</type>
  31. <scope>import</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba.cloud</groupId>
  35. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  36. <version>2021.0.5.0</version>
  37. <type>pom</type>
  38. <scope>import</scope>
  39. </dependency>
  40. </dependencies>
  41. </dependencyManagement>
  42. <distributionManagement>
  43. <snapshotRepository>
  44. <uniqueVersion>false</uniqueVersion>
  45. <id>nexus-snapshots</id>
  46. <name>Nexus Snapshot Repository</name>
  47. <url>http://124.220.229.80:9091/repository/maven-snapshots/</url>
  48. <layout>default</layout>
  49. </snapshotRepository>
  50. <repository>
  51. <id>nexus-releases</id>
  52. <name>maven-releases</name>
  53. <url>http://124.220.229.80:9091/repository/maven-releases/</url>
  54. </repository>
  55. </distributionManagement>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <version>3.7.0</version>
  62. <configuration>
  63. <source>1.8</source>
  64. <target>1.8</target>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. </project>