pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <packaging>pom</packaging>
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.1.2.RELEASE</version>
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.kingkong</groupId>
  13. <artifactId>bljs</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <name>bljs</name>
  16. <description>病历检索</description>
  17. <properties>
  18. <java.version>1.8</java.version>
  19. </properties>
  20. <modules>
  21. <module>common</module>
  22. <module>service</module>
  23. <module>repo</module>
  24. <module>facade</module>
  25. </modules>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.mybatis.spring.boot</groupId>
  30. <artifactId>mybatis-spring-boot-starter</artifactId>
  31. <version>2.0.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>fastjson</artifactId>
  36. <version>1.2.47</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.oracle</groupId>
  40. <artifactId>ojdbc6</artifactId>
  41. <version>11.2.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.reflections</groupId>
  45. <artifactId>reflections</artifactId>
  46. <version>0.9.11</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-aop</artifactId>
  51. <version>2.1.2.RELEASE</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.session</groupId>
  55. <artifactId>spring-session-data-redis</artifactId>
  56. <version>2.1.2.RELEASE</version>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/org.springframework.security.oauth/spring-security-oauth2 -->
  59. <!--<dependency>-->
  60. <!--<groupId>org.springframework.security.oauth</groupId>-->
  61. <!--<artifactId>spring-security-oauth2</artifactId>-->
  62. <!--<version>2.1.2.RELEASE</version>-->
  63. <!--</dependency>-->
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-data-redis</artifactId>
  67. <version>2.1.2.RELEASE</version>
  68. </dependency>
  69. <!--<dependency>-->
  70. <!--<groupId>org.springframework.boot</groupId>-->
  71. <!--<artifactId>spring-boot-starter-security</artifactId>-->
  72. <!--<version>2.1.2.RELEASE</version>-->
  73. <!--</dependency>-->
  74. <!--<dependency>-->
  75. <!--<groupId>org.springframework.security</groupId>-->
  76. <!--<artifactId>spring-security-config</artifactId>-->
  77. <!--<version>2.1.2.RELEASE</version>-->
  78. <!--</dependency>-->
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-starter-cache</artifactId>
  82. <version>2.1.2.RELEASE</version>
  83. </dependency>
  84. </dependencies>
  85. </dependencyManagement>
  86. <!--<build>-->
  87. <!--<plugins>-->
  88. <!--<plugin>-->
  89. <!--<groupId>org.springframework.boot</groupId>-->
  90. <!--<artifactId>spring-boot-maven-plugin</artifactId>-->
  91. <!--<configuration>-->
  92. <!--<fork>true</fork>-->
  93. <!--</configuration>-->
  94. <!--</plugin>-->
  95. <!--</plugins>-->
  96. <!--</build>-->
  97. </project>