pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <!-- 父类定义 -->
  5. <parent>
  6. <groupId>com.iamberry</groupId>
  7. <artifactId>iamberry-parent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <!-- 工具类本身并不依赖其他模块 -->
  11. <artifactId>iamberry-common-tool</artifactId>
  12. <!-- 依赖 -->
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.iamberry</groupId>
  16. <artifactId>iamberry-common-config</artifactId>
  17. <version>1.0.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.elasticsearch</groupId>
  21. <artifactId>elasticsearch</artifactId>
  22. <version>2.4.1</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.google.guava</groupId>
  26. <artifactId>guava</artifactId>
  27. <version>18.0</version>
  28. </dependency>
  29. <!-- activemq
  30. <dependency>
  31. <groupId>org.apache.activemq</groupId>
  32. <artifactId>activemq-all</artifactId>
  33. <version>5.9.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.activemq</groupId>
  37. <artifactId>activemq-pool</artifactId>
  38. <version>5.9.0</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-jms</artifactId>
  43. <version>4.1.7.RELEASE</version>
  44. </dependency>-->
  45. <!-- JWT -->
  46. <dependency>
  47. <groupId>com.auth0</groupId>
  48. <artifactId>java-jwt</artifactId>
  49. <version>2.2.1</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <version>2.3.2</version>
  58. <configuration>
  59. <source>1.8</source>
  60. <target>1.8</target>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>