pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>fframwork</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>AppDemo</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <mybatis.spring.boot.starter.version>1.3.2</mybatis.spring.boot.starter.version>
  15. <pagehelper.spring.boot.starter.version>1.2.5</pagehelper.spring.boot.starter.version>
  16. <druid.version>1.1.10</druid.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.tofly</groupId>
  21. <artifactId>common-core</artifactId>
  22. <version>1.0-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.tofly</groupId>
  26. <artifactId>common-log</artifactId>
  27. <version>1.0-SNAPSHOT</version>
  28. </dependency>
  29. <!--web 模块-->
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. <exclusions>
  34. <!--排除tomcat依赖-->
  35. <exclusion>
  36. <artifactId>spring-boot-starter-tomcat</artifactId>
  37. <groupId>org.springframework.boot</groupId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <!--undertow容器,经测验,undertow比tomct性能更好-->
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-undertow</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>druid-spring-boot-starter</artifactId>
  49. <version>${druid.version}</version>
  50. </dependency>
  51. <!-- SpringBoot集成mybatis框架 -->
  52. <dependency>
  53. <groupId>org.mybatis.spring.boot</groupId>
  54. <artifactId>mybatis-spring-boot-starter</artifactId>
  55. <version>${mybatis.spring.boot.starter.version}</version>
  56. </dependency>
  57. <!-- pagehelper 分页插件 -->
  58. <dependency>
  59. <groupId>com.github.pagehelper</groupId>
  60. <artifactId>pagehelper-spring-boot-starter</artifactId>
  61. <version>${pagehelper.spring.boot.starter.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.oracle</groupId>
  65. <artifactId>ojdbc14</artifactId>
  66. <version>10.2.0.5.0</version>
  67. </dependency>
  68. </dependencies>
  69. </project>