pom.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <build>
  6. <plugins>
  7. <plugin>
  8. <groupId>org.apache.maven.plugins</groupId>
  9. <artifactId>maven-compiler-plugin</artifactId>
  10. <configuration>
  11. <source>8</source>
  12. <target>8</target>
  13. </configuration>
  14. </plugin>
  15. </plugins>
  16. </build>
  17. <parent>
  18. <groupId>cn.bs</groupId>
  19. <artifactId>bs-manage</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. </parent>
  22. <groupId>cn.bs</groupId>
  23. <artifactId>bsmanage-common</artifactId>
  24. <version>0.0.1-SNAPSHOT</version>
  25. <name>bsmanage-common</name>
  26. <description>Demo project for Spring Boot</description>
  27. <properties>
  28. <java.version>1.8</java.version>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-aop</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-tomcat</artifactId>
  42. <scope>provided</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.apache.tomcat.embed</groupId>
  46. <artifactId>tomcat-embed-jasper</artifactId>
  47. <scope>provided</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <optional>true</optional>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.aspectj</groupId>
  56. <artifactId>aspectjweaver</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpclient</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.httpcomponents</groupId>
  64. <artifactId>httpmime</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.alibaba</groupId>
  68. <artifactId>fastjson</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>eu.bitwalker</groupId>
  72. <artifactId>UserAgentUtils</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.httpcomponents</groupId>
  76. <artifactId>httpclient</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.squareup.okhttp3</groupId>
  80. <artifactId>okhttp</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>joda-time</groupId>
  84. <artifactId>joda-time</artifactId>
  85. <version>2.2</version>
  86. </dependency>
  87. </dependencies>
  88. </project>