pom.xml 2.6 KB

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