pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.shiku</groupId>
  6. <artifactId>mianshi-parent</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <name>mianshi-parent</name>
  10. <description>mianshi-parent</description>
  11. <dependencyManagement>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-dependencies</artifactId>
  16. <type>pom</type>
  17. <version>1.1.9.RELEASE</version>
  18. <scope>import</scope>
  19. </dependency>
  20. </dependencies>
  21. </dependencyManagement>
  22. <!-- Add typical dependencies for a web application -->
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. </dependencies>
  29. <!-- Add Spring repositories -->
  30. <!-- (you don't need this if you are using a .RELEASE version) -->
  31. <!-- <repositories>
  32. <repository>
  33. <id>spring-snapshots</id>
  34. <url>http://repo.spring.io/snapshot</url>
  35. <snapshots>
  36. <enabled>true</enabled>
  37. </snapshots>
  38. </repository>
  39. <repository>
  40. <id>spring-milestones</id>
  41. <url>http://repo.spring.io/milestone</url>
  42. </repository>
  43. </repositories> -->
  44. <!-- <pluginRepositories>
  45. <pluginRepository>
  46. <id>spring-snapshots</id>
  47. <url>http://repo.spring.io/snapshot</url>
  48. </pluginRepository>
  49. <pluginRepository>
  50. <id>spring-milestones</id>
  51. <url>http://repo.spring.io/milestone</url>
  52. </pluginRepository>
  53. </pluginRepositories> -->
  54. <modules>
  55. <module>mianshi-service</module>
  56. <module>mianshi-im-api</module>
  57. </modules>
  58. <distributionManagement>
  59. <!-- 发布release仓库 -->
  60. <repository>
  61. <id>platform-release</id>
  62. <name>platform-release</name>
  63. <url>https://maven.ubtob.net/artifactory/libs-release-local</url>
  64. </repository>
  65. <!-- 发布快照版本 -->
  66. <snapshotRepository>
  67. <id>platform-snapshots</id>
  68. <name>platform-snapshots</name>
  69. <url>https://maven.ubtob.net/artifactory/libs-snapshot-local</url>
  70. </snapshotRepository>
  71. </distributionManagement>
  72. </project>