pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.syjy</groupId>
  7. <artifactId>fastcontrol</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.projectlombok</groupId>
  12. <artifactId>lombok</artifactId>
  13. <version>1.18.16</version>
  14. <scope>compile</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>wei.yigulu</groupId>
  18. <artifactId>protocol-all</artifactId>
  19. <version>2.3.16</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.baomidou</groupId>
  23. <artifactId>mybatis-plus</artifactId>
  24. <version>3.5.3.1</version>
  25. </dependency>
  26. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  27. <dependency>
  28. <groupId>com.fasterxml.jackson.core</groupId>
  29. <artifactId>jackson-core</artifactId>
  30. <version>2.14.2</version>
  31. </dependency>
  32. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
  33. <dependency>
  34. <groupId>com.fasterxml.jackson.core</groupId>
  35. <artifactId>jackson-databind</artifactId>
  36. <version>2.15.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>cn.hutool</groupId>
  40. <artifactId>hutool-all</artifactId>
  41. <version>5.8.16</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.googlecode.aviator</groupId>
  45. <artifactId>aviator</artifactId>
  46. <version>5.0.0</version>
  47. </dependency>
  48. </dependencies>
  49. <build>
  50. <plugins>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <configuration>
  55. <source>1.8</source>
  56. <target>1.8</target>
  57. </configuration>
  58. </plugin>
  59. </plugins>
  60. </build>
  61. </project>