pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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>wumao-dtu</artifactId>
  7. <groupId>iot.wumao</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wumao-udp-service</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>iot.wumao</groupId>
  16. <artifactId>wumao-common</artifactId>
  17. <version>1.0.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-freemarker</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.quartz-scheduler</groupId>
  25. <artifactId>quartz</artifactId>
  26. <version>2.3.0</version>
  27. <exclusions>
  28. <exclusion>
  29. <groupId>com.mchange</groupId>
  30. <artifactId>c3p0</artifactId>
  31. </exclusion>
  32. <exclusion>
  33. <groupId>com.zaxxer</groupId>
  34. <artifactId>HikariCP-java6</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.shiro</groupId>
  40. <artifactId>shiro-core</artifactId>
  41. <version>1.4.0</version>
  42. <scope>compile</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.github.axet</groupId>
  46. <artifactId>kaptcha</artifactId>
  47. <version>0.0.9</version>
  48. <scope>compile</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.shiro</groupId>
  52. <artifactId>shiro-spring</artifactId>
  53. <version>1.4.0</version>
  54. <scope>compile</scope>
  55. </dependency>
  56. </dependencies>
  57. <build>
  58. <finalName>${project.artifactId}</finalName>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <configuration>
  64. <includeSystemScope>true</includeSystemScope>
  65. </configuration>
  66. </plugin>
  67. <!-- 跳过单元测试 -->
  68. <plugin>
  69. <groupId>org.apache.maven.plugins</groupId>
  70. <artifactId>maven-surefire-plugin</artifactId>
  71. <configuration>
  72. <skipTests>true</skipTests>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>