pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>1.4.1.RELEASE</version>
  9. </parent>
  10. <groupId>com.uas.sso</groupId>
  11. <artifactId>sso-parent</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>pom</packaging>
  14. <modules>
  15. <module>sso-server</module>
  16. <module>sso-common</module>
  17. </modules>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <maven.compiler.source>1.7</maven.compiler.source>
  21. <maven.compiler.target>1.7</maven.compiler.target>
  22. <maven.compiler.compilerVersion>1.7</maven.compiler.compilerVersion>
  23. <fastjson.version>1.2.15</fastjson.version>
  24. <druid.version>1.0.24</druid.version>
  25. <mysql.jdbc.version>5.1.41</mysql.jdbc.version>
  26. <message.version>0.0.1</message.version>
  27. <dubbo.version>2.8.4</dubbo.version>
  28. <zookeeper.version>3.4.6</zookeeper.version>
  29. <zkclient.version>0.1</zkclient.version>
  30. <dfs.version>0.0.2</dfs.version>
  31. <pinyin.version>2.5.1</pinyin.version>
  32. </properties>
  33. <dependencyManagement>
  34. <dependencies>
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <version>${mysql.jdbc.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>druid</artifactId>
  43. <version>${druid.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>fastjson</artifactId>
  48. <version>${fastjson.version}</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework</groupId>
  52. <artifactId>spring-context</artifactId>
  53. <version>${spring.version}</version>
  54. </dependency>
  55. <!-- message center -->
  56. <dependency>
  57. <groupId>com.uas.message</groupId>
  58. <artifactId>message-mail-api</artifactId>
  59. <version>${message.version}</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.uas.message</groupId>
  63. <artifactId>message-sms-api</artifactId>
  64. <version>${message.version}</version>
  65. </dependency>
  66. <!-- dubbo -->
  67. <dependency>
  68. <groupId>com.alibaba</groupId>
  69. <artifactId>dubbo</artifactId>
  70. <version>${dubbo.version}</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.zookeeper</groupId>
  74. <artifactId>zookeeper</artifactId>
  75. <version>${zookeeper.version}</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.github.sgroschupf</groupId>
  79. <artifactId>zkclient</artifactId>
  80. <version>${zkclient.version}</version>
  81. </dependency>
  82. <!-- dfs service on dubbo -->
  83. <dependency>
  84. <groupId>com.uas.dfs</groupId>
  85. <artifactId>dfs-api</artifactId>
  86. <version>${dfs.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.belerweb</groupId>
  90. <artifactId>pinyin4j</artifactId>
  91. <version>${pinyin.version}</version>
  92. </dependency>
  93. </dependencies>
  94. </dependencyManagement>
  95. <distributionManagement>
  96. <!-- 发布release仓库 -->
  97. <repository>
  98. <id>platform-release</id>
  99. <name>platform-release</name>
  100. <url>http://113.105.74.141:8081/artifactory/libs-release-local</url>
  101. </repository>
  102. <!-- 发布快照版本 -->
  103. <snapshotRepository>
  104. <id>platform-snapshots</id>
  105. <name>platform-snapshots</name>
  106. <url>http://113.105.74.141:8081/artifactory/libs-snapshot-local</url>
  107. </snapshotRepository>
  108. </distributionManagement>
  109. </project>