pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.0.5.RELEASE</version>
  12. </parent>
  13. <artifactId>backstage</artifactId>
  14. <packaging>pom</packaging>
  15. <modules>
  16. <!-- <module>backstage-interface</module>-->
  17. <module>backstage-service</module>
  18. <module>backstage-api</module>
  19. </modules>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-dependencies</artifactId>
  25. <version>Finchley.SR1</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 Snapshot Repository</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>maven-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>