pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <parent>
  4. <artifactId>alarmNew</artifactId>
  5. <groupId>com.gyee</groupId>
  6. <version>1.0-SNAPSHOT</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>alarm-custom</artifactId>
  10. <packaging>jar</packaging>
  11. <name>alarm-custom</name>
  12. <url>http://maven.apache.org</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>junit</groupId>
  19. <artifactId>junit</artifactId>
  20. <version>3.8.1</version>
  21. <scope>test</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.netflix.feign</groupId>
  25. <artifactId>feign-core</artifactId>
  26. <version>8.18.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.netflix.feign</groupId>
  30. <artifactId>feign-jackson</artifactId>
  31. <version>8.18.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba.fastjson2</groupId>
  35. <artifactId>fastjson2</artifactId>
  36. <version>2.0.32</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.fasterxml.jackson</groupId>
  40. <artifactId>jackson-bom</artifactId>
  41. <version>2.14.3</version>
  42. <type>pom</type>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.fasterxml.jackson.core</groupId>
  46. <artifactId>jackson-databind</artifactId>
  47. <version>2.14.3</version>
  48. </dependency>
  49. </dependencies>
  50. </project>