pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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>jboot-admin-parent</artifactId>
  7. <groupId>io.jboot.admin</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jboot-admin-base</artifactId>
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <groupId>io.jboot</groupId>
  16. <artifactId>jboot</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>ch.qos.logback</groupId>
  20. <artifactId>logback-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>ch.qos.logback</groupId>
  24. <artifactId>logback-classic</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>eu.bitwalker</groupId>
  28. <artifactId>UserAgentUtils</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.shiro</groupId>
  32. <artifactId>shiro-core</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.shiro</groupId>
  36. <artifactId>shiro-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.weibo</groupId>
  40. <artifactId>motan-core</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.weibo</groupId>
  44. <artifactId>motan-transport-netty4</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.weibo</groupId>
  48. <artifactId>motan-registry-consul</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.weibo</groupId>
  52. <artifactId>motan-registry-zookeeper</artifactId>
  53. </dependency>
  54. </dependencies>
  55. <build>
  56. <pluginManagement>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <configuration>
  62. <source>1.8</source>
  63. <target>1.8</target>
  64. </configuration>
  65. </plugin>
  66. </plugins>
  67. </pluginManagement>
  68. </build>
  69. </project>