pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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>org.elasticsearch</groupId>
  16. <artifactId>elasticsearch</artifactId>
  17. <version>2.4.1</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.google.guava</groupId>
  21. <artifactId>guava</artifactId>
  22. <version>18.0</version>
  23. </dependency>
  24. <!-- activemq
  25. <dependency>
  26. <groupId>org.apache.activemq</groupId>
  27. <artifactId>activemq-all</artifactId>
  28. <version>5.9.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.activemq</groupId>
  32. <artifactId>activemq-pool</artifactId>
  33. <version>5.9.0</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-jms</artifactId>
  38. <version>4.1.7.RELEASE</version>
  39. </dependency>-->
  40. <!-- JWT -->
  41. <dependency>
  42. <groupId>com.auth0</groupId>
  43. <artifactId>java-jwt</artifactId>
  44. <version>2.2.1</version>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <finalName>iamberry-common-tool</finalName>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.3</version>
  54. <configuration>
  55. <source>1.7</source>
  56. <target>1.7</target>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>