Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.neusoft.smart.pos</groupId>
  7. <artifactId>common</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <java.version>1.8</java.version>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.neusoft.smart.pos</groupId>
  18. <artifactId>framework</artifactId>
  19. <version>1.0-SNAPSHOT</version>
  20. </dependency>
  21. <!-- MySql数据库驱动 -->
  22. <dependency>
  23. <groupId>mysql</groupId>
  24. <artifactId>mysql-connector-java</artifactId>
  25. <version>5.1.39</version>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.alibaba</groupId>
  30. <artifactId>druid</artifactId>
  31. <version>1.1.2</version>
  32. <scope>provided</scope>
  33. </dependency>
  34. <!-- mybatis代码自动生成 -->
  35. <dependency>
  36. <groupId>org.mybatis.generator</groupId>
  37. <artifactId>mybatis-generator-core</artifactId>
  38. <version>1.3.5</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.mybatis.spring.boot</groupId>
  43. <artifactId>mybatis-spring-boot-starter</artifactId>
  44. <version>1.1.1</version>
  45. <scope>provided</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <version>1.16.18</version>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.springfox</groupId>
  55. <artifactId>springfox-swagger2</artifactId>
  56. <version>2.6.1</version>
  57. <scope>provided</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.hibernate</groupId>
  61. <artifactId>hibernate-validator</artifactId>
  62. <version>5.3.6.Final</version>
  63. <scope>provided</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>fastjson</artifactId>
  68. <version>RELEASE</version>
  69. <scope>provided</scope>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-amqp</artifactId>
  74. <version>RELEASE</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-lang3</artifactId>
  79. <version>3.9</version>
  80. </dependency>
  81. </dependencies>
  82. <!-- 数据库映射生成工具 -->
  83. <build>
  84. <plugins>
  85. <plugin>
  86. <groupId>org.mybatis.generator</groupId>
  87. <artifactId>mybatis-generator-maven-plugin</artifactId>
  88. <version>1.3.3</version>
  89. <configuration>
  90. <configurationFile>src/test/resources/mybatis/mybatis-generator/generatorConfig.xml
  91. </configurationFile>
  92. <overwrite>true</overwrite>
  93. <verbose>true</verbose>
  94. </configuration>
  95. <dependencies>
  96. <!-- 数据库驱动 -->
  97. <dependency>
  98. <groupId>mysql</groupId>
  99. <artifactId>mysql-connector-java</artifactId>
  100. <version>5.1.39</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.github.oceanc</groupId>
  104. <artifactId>mybatis3-generator-plugin</artifactId>
  105. <version>RELEASE</version>
  106. </dependency>
  107. </dependencies>
  108. </plugin>
  109. <plugin>
  110. <groupId>org.apache.maven.plugins</groupId>
  111. <artifactId>maven-compiler-plugin</artifactId>
  112. <version>3.1</version>
  113. <configuration>
  114. <source>${java.version}</source>
  115. <target>${java.version}</target>
  116. <encoding>${project.build.sourceEncoding}</encoding>
  117. </configuration>
  118. </plugin>
  119. </plugins>
  120. </build>
  121. </project>