pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.unis.inspectionplan</groupId>
  9. <artifactId>inspectionplan-service</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>inspectionplan-server</artifactId>
  13. <name>inspectionplan-server</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework.boot</groupId>
  17. <artifactId>spring-boot-starter-data-jpa</artifactId>
  18. </dependency>
  19. <dependency>
  20. <artifactId>inspectionplan-common</artifactId>
  21. <groupId>com.unis.inspectionplan</groupId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <!-- 依赖gbase Jar包 -->
  29. <dependency>
  30. <groupId>com.gbase8s</groupId>
  31. <artifactId>ifxjdbc</artifactId>
  32. <version>1.0</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.gbase</groupId>
  36. <artifactId>druid</artifactId>
  37. <version>1.0.28</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>mysql</groupId>
  41. <artifactId>mysql-connector-java</artifactId>
  42. <version>8.0.18</version>
  43. </dependency>
  44. <!-- ojdbc7数据源 -->
  45. <!-- <dependency>
  46. <groupId>cn.easyproject</groupId>
  47. <artifactId>ojdbc7</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.alibaba</groupId>
  51. <artifactId>druid-spring-boot-starter</artifactId>
  52. </dependency> -->
  53. <dependency>
  54. <groupId>org.mybatis.spring.boot</groupId>
  55. <artifactId>mybatis-spring-boot-starter</artifactId>
  56. <version>3.0.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>tk.mybatis</groupId>
  60. <artifactId>mapper-spring-boot-starter</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.cloud</groupId>
  64. <artifactId>spring-cloud-config-client</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.cloud</groupId>
  68. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.projectlombok</groupId>
  72. <artifactId>lombok</artifactId>
  73. <!--<optional>true</optional>-->
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-test</artifactId>
  78. <scope>test</scope>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-starter-web</artifactId>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.alibaba</groupId>
  86. <artifactId>fastjson</artifactId>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.google.guava</groupId>
  90. <artifactId>guava</artifactId>
  91. <version>26.0-jre</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.commons</groupId>
  95. <artifactId>commons-lang3</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.github.pagehelper</groupId>
  99. <artifactId>pagehelper-spring-boot-starter</artifactId>
  100. <version>1.3.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.boot</groupId>
  104. <artifactId>spring-boot-devtools</artifactId>
  105. <optional>true</optional>
  106. <scope>runtime</scope>
  107. </dependency>
  108. </dependencies>
  109. <build>
  110. <finalName>${project.name}</finalName>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-maven-plugin</artifactId>
  115. <configuration>
  116. <mainClass>com.unis.inspectionplan.server.InspectionplanApplication</mainClass>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <groupId>org.apache.maven.plugins</groupId>
  121. <artifactId>maven-surefire-plugin</artifactId>
  122. <configuration>
  123. <testFailureIgnore>true</testFailureIgnore>
  124. </configuration>
  125. </plugin>
  126. </plugins>
  127. </build>
  128. <repositories>
  129. <repository>
  130. <id>spring-milestones</id>
  131. <name>Spring Milestones</name>
  132. <url>https://repo.spring.io/milestone</url>
  133. <snapshots>
  134. <enabled>false</enabled>
  135. </snapshots>
  136. </repository>
  137. </repositories>
  138. </project>