pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-dependencies</artifactId>
  25. <version>2021.0.8</version>
  26. <type>pom</type>
  27. <scope>import</scope>
  28. </dependency>
  29. <!-- <dependency> -->
  30. <!-- <groupId>org.springframework.cloud</groupId> -->
  31. <!-- <artifactId>spring-cloud-alibaba-dependencies</artifactId> -->
  32. <!-- <version>0.2.2.RELEASE</version> -->
  33. <!-- <type>pom</type> -->
  34. <!-- <scope>import</scope> -->
  35. <!-- </dependency> -->
  36. </dependencies>
  37. </dependencyManagement>
  38. <distributionManagement>
  39. <snapshotRepository>
  40. <uniqueVersion>false</uniqueVersion>
  41. <id>nexus-snapshots</id>
  42. <name>nexus-snapshots</name>
  43. <url>http://124.220.229.80:9091/repository/maven-snapshots/</url>
  44. <layout>default</layout>
  45. </snapshotRepository>
  46. <repository>
  47. <id>nexus-releases</id>
  48. <name>nexus-releases</name>
  49. <url>http://124.220.229.80:9091/repository/maven-releases/</url>
  50. </repository>
  51. </distributionManagement>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <version>3.7.0</version>
  58. <configuration>
  59. <source>1.8</source>
  60. <target>1.8</target>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>