pom.xml 2.1 KB

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