You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
5.0 KiB

  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. <dependency>
  22. <groupId>net.sf.dozer</groupId>
  23. <artifactId>dozer</artifactId>
  24. <version>5.5.1</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.aliyun.openservices</groupId>
  28. <artifactId>ons-client</artifactId>
  29. <version>1.8.4.Final</version>
  30. </dependency>
  31. <!-- MySql数据库驱动 -->
  32. <dependency>
  33. <groupId>mysql</groupId>
  34. <artifactId>mysql-connector-java</artifactId>
  35. <version>5.1.39</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.alibaba</groupId>
  40. <artifactId>druid</artifactId>
  41. <version>1.1.2</version>
  42. <scope>provided</scope>
  43. </dependency>
  44. <!-- mybatis代码自动生成 -->
  45. <dependency>
  46. <groupId>org.mybatis.generator</groupId>
  47. <artifactId>mybatis-generator-core</artifactId>
  48. <version>1.3.5</version>
  49. <scope>provided</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.mybatis.spring.boot</groupId>
  53. <artifactId>mybatis-spring-boot-starter</artifactId>
  54. <version>1.1.1</version>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.projectlombok</groupId>
  59. <artifactId>lombok</artifactId>
  60. <version>1.16.18</version>
  61. <scope>provided</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>io.springfox</groupId>
  65. <artifactId>springfox-swagger2</artifactId>
  66. <version>2.6.1</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.hibernate</groupId>
  71. <artifactId>hibernate-validator</artifactId>
  72. <version>5.3.6.Final</version>
  73. <scope>provided</scope>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.alibaba</groupId>
  77. <artifactId>fastjson</artifactId>
  78. <version>RELEASE</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-amqp</artifactId>
  84. <version>RELEASE</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.commons</groupId>
  88. <artifactId>commons-lang3</artifactId>
  89. <version>3.9</version>
  90. </dependency>
  91. </dependencies>
  92. <!-- 数据库映射生成工具 -->
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.mybatis.generator</groupId>
  97. <artifactId>mybatis-generator-maven-plugin</artifactId>
  98. <version>1.3.3</version>
  99. <configuration>
  100. <configurationFile>src/test/resources/mybatis/mybatis-generator/generatorConfig.xml
  101. </configurationFile>
  102. <overwrite>true</overwrite>
  103. <verbose>true</verbose>
  104. </configuration>
  105. <dependencies>
  106. <!-- 数据库驱动 -->
  107. <dependency>
  108. <groupId>mysql</groupId>
  109. <artifactId>mysql-connector-java</artifactId>
  110. <version>5.1.39</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.github.oceanc</groupId>
  114. <artifactId>mybatis3-generator-plugin</artifactId>
  115. <version>RELEASE</version>
  116. </dependency>
  117. </dependencies>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-compiler-plugin</artifactId>
  122. <version>3.1</version>
  123. <configuration>
  124. <source>${java.version}</source>
  125. <target>${java.version}</target>
  126. <encoding>${project.build.sourceEncoding}</encoding>
  127. </configuration>
  128. </plugin>
  129. </plugins>
  130. </build>
  131. </project>