pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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>accountability-service</artifactId>
  7. <groupId>com.unis.accountability</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>accountability-server</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.alibaba</groupId>
  15. <artifactId>druid-spring-boot-starter</artifactId>
  16. <version>1.1.10</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.oracle</groupId>
  20. <artifactId>ojdbc14</artifactId>
  21. <version>10.2.0.5.0</version>
  22. </dependency>
  23. <!-- <dependency>
  24. <groupId>com.alibaba</groupId>
  25. <artifactId>druid-spring-boot-starter</artifactId>
  26. </dependency>-->
  27. <!--<dependency>-->
  28. <!--<groupId>cn.easyproject</groupId>-->
  29. <!--<artifactId>ojdbc7</artifactId>-->
  30. <!--</dependency>-->
  31. <!-- <dependency>-->
  32. <!-- <groupId>com.gbase8s</groupId>-->
  33. <!-- <artifactId>ifxjdbc</artifactId>-->
  34. <!-- <version>1.0</version>-->
  35. <!-- </dependency>-->
  36. <!-- <dependency>-->
  37. <!-- <groupId>com.gbase</groupId>-->
  38. <!-- <artifactId>druid</artifactId>-->
  39. <!-- <version>1.0.28</version>-->
  40. <!-- </dependency>-->
  41. <dependency>
  42. <groupId>org.mybatis.spring.boot</groupId>
  43. <artifactId>mybatis-spring-boot-starter</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>tk.mybatis</groupId>
  47. <artifactId>mapper-spring-boot-starter</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.cloud</groupId>
  51. <artifactId>spring-cloud-config-client</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.cloud</groupId>
  55. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.springframework.boot</groupId>
  59. <artifactId>spring-boot-starter-test</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-web</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.mybatis.spring.boot</groupId>
  68. <artifactId>mybatis-spring-boot-starter</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>tk.mybatis</groupId>
  72. <artifactId>mapper-spring-boot-starter</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-tomcat</artifactId>
  77. <!--<scope>provided</scope>-->
  78. </dependency>
  79. <!-- rabbitmq -->
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-amqp</artifactId>
  83. </dependency>
  84. <!-- <dependency>-->
  85. <!-- <groupId>com.github.pagehelper</groupId>-->
  86. <!-- <artifactId>pagehelper-spring-boot-starter</artifactId>-->
  87. <!-- </dependency>-->
  88. <dependency>
  89. <groupId>com.github.pagehelper</groupId>
  90. <artifactId>pagehelper-spring-boot-starter</artifactId>
  91. <version>1.2.12</version>
  92. </dependency>
  93. <dependency>
  94. <artifactId>accountability-common</artifactId>
  95. <groupId>com.unis.accountability</groupId>
  96. <version>1.0</version>
  97. </dependency>
  98. </dependencies>
  99. <build>
  100. <plugins>
  101. <plugin>
  102. <groupId>org.springframework.boot</groupId>
  103. <artifactId>spring-boot-maven-plugin</artifactId>
  104. </plugin>
  105. </plugins>
  106. <finalName>accountability-server</finalName>
  107. </build>
  108. <repositories>
  109. <repository>
  110. <id>spring-milestones</id>
  111. <name>Spring Milestones</name>
  112. <url>https://repo.spring.io/milestone</url>
  113. <snapshots>
  114. <enabled>false</enabled>
  115. </snapshots>
  116. </repository>
  117. </repositories>
  118. </project>