pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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>house-parent</artifactId>
  7. <groupId>com.ljq.house</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <description>四维VR看房</description>
  12. <artifactId>house-common</artifactId>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <packaging>jar</packaging>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.ljq.house</groupId>
  20. <artifactId>house-biz</artifactId>
  21. <version>0.0.1-SNAPSHOT</version>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>io.springfox</groupId>
  25. <artifactId>springfox-swagger2</artifactId>
  26. </exclusion>
  27. <exclusion>
  28. <groupId>io.springfox</groupId>
  29. <artifactId>springfox-swagger-ui</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <!-- &lt;!&ndash; swagger-ui &ndash;&gt;
  34. <dependency>
  35. <groupId>io.springfox</groupId>
  36. <artifactId>springfox-swagger2</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.springfox</groupId>
  40. <artifactId>springfox-swagger-ui</artifactId>
  41. </dependency>-->
  42. <dependency>
  43. <groupId>org.apache.shiro</groupId>
  44. <artifactId>shiro-spring</artifactId>
  45. <version>1.3.2</version>
  46. <exclusions>
  47. <exclusion>
  48. <groupId>commons-beanutils</groupId>
  49. <artifactId>commons-beanutils</artifactId>
  50. </exclusion>
  51. </exclusions>
  52. </dependency>
  53. <dependency>
  54. <groupId>junit</groupId>
  55. <artifactId>junit</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpclient</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-beanutils</groupId>
  64. <artifactId>commons-beanutils</artifactId>
  65. <version>1.9.3</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>redis.clients</groupId>
  69. <artifactId>jedis</artifactId>
  70. <version>3.1.0</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.data</groupId>
  74. <artifactId>spring-data-redis</artifactId>
  75. <version>2.1.4.RELEASE</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.bytedeco</groupId>
  79. <artifactId>javacv</artifactId>
  80. <version>1.4.3</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.bytedeco.javacpp-presets</groupId>
  84. <artifactId>ffmpeg-platform</artifactId>
  85. <version>4.0.2-1.4.3</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>commons-io</groupId>
  89. <artifactId>commons-io</artifactId>
  90. <version>2.4</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.ant</groupId>
  94. <artifactId>ant</artifactId>
  95. <version>1.8.2</version>
  96. </dependency>
  97. </dependencies>
  98. </project>