pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.younike</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <artifactId>group-platform</artifactId>
  9. </parent>
  10. <groupId>com.younike</groupId>
  11. <artifactId>admin</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>admin</name>
  14. <description>后台管理部分</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.younike</groupId>
  21. <artifactId>service</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.younike</groupId>
  26. <artifactId>config</artifactId>
  27. <version>0.0.1-SNAPSHOT</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.younike</groupId>
  31. <artifactId>common</artifactId>
  32. <version>0.0.1-SNAPSHOT</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.shiro</groupId>
  40. <artifactId>shiro-core</artifactId>
  41. <version>1.8.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.shiro</groupId>
  45. <artifactId>shiro-ehcache</artifactId>
  46. <version>1.8.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>eu.bitwalker</groupId>
  50. <artifactId>UserAgentUtils</artifactId>
  51. <version>1.21</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.shiro</groupId>
  55. <artifactId>shiro-web</artifactId>
  56. <version>1.8.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.shiro</groupId>
  60. <artifactId>shiro-spring</artifactId>
  61. <version>1.8.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-test</artifactId>
  66. </dependency>
  67. <!-- <dependency>-->
  68. <!-- <groupId>com.microsoft.sqlserver</groupId>-->
  69. <!-- <artifactId>sqljdbc4</artifactId>-->
  70. <!-- <version>4.0</version>-->
  71. <!-- </dependency>-->
  72. <dependency>
  73. <groupId>com.microsoft.sqlserver</groupId>
  74. <artifactId>mssql-jdbc</artifactId>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>