pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. <parent>
  6. <artifactId>tofly-common</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-oauth</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0.0</version>
  14. <dependencies>
  15. <!--安全模块-->
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-security</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.security.oauth.boot</groupId>
  22. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.tofly</groupId>
  26. <artifactId>base-api</artifactId>
  27. <version>1.0.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.oracle</groupId>
  31. <artifactId>ojdbc6</artifactId>
  32. <version>11.2.0.4.0-atlassian-hosted</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>mysql</groupId>
  36. <artifactId>mysql-connector-java</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-boot-starter</artifactId>
  41. <version>${mybatis-plus.version}</version>
  42. </dependency>
  43. <!-- druid-->
  44. <dependency>
  45. <groupId>com.alibaba</groupId>
  46. <artifactId>druid-spring-boot-starter</artifactId>
  47. <version>${druid.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-data-redis</artifactId>
  52. <!--<exclusions>-->
  53. <!--<exclusion>-->
  54. <!--<groupId>io.lettuce</groupId>-->
  55. <!--<artifactId>lettuce-core</artifactId>-->
  56. <!--</exclusion>-->
  57. <!--</exclusions>-->
  58. </dependency>
  59. <!--<dependency>-->
  60. <!--<groupId>redis.clients</groupId>-->
  61. <!--<artifactId>jedis</artifactId>-->
  62. <!--</dependency>-->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-autoconfigure</artifactId>
  66. </dependency>
  67. <!--<dependency>-->
  68. <!--<groupId>io.github.swagger2markup</groupId>-->
  69. <!--<artifactId>swagger2markup</artifactId>-->
  70. <!--<version>1.3.3</version>-->
  71. <!--</dependency>-->
  72. </dependencies>
  73. <distributionManagement>
  74. <repository>
  75. <id>nexus-releases</id>
  76. <name>Nexus Release Repository</name>
  77. <url>http://192.168.2.231:8081/nexus/content/repositories/thirdparty</url>
  78. </repository>
  79. </distributionManagement>
  80. </project>