pom.xml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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>BlackBoxSystem</artifactId>
  7. <groupId>db</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>insert-app</artifactId>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>db</groupId>
  20. <artifactId>db-api</artifactId>
  21. <version>0.0.1-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>db</groupId>
  25. <artifactId>protocol</artifactId>
  26. <version>0.0.1-SNAPSHOT</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>db</groupId>
  34. <artifactId>file-api</artifactId>
  35. <version>0.0.1-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.pcap4j</groupId>
  39. <artifactId>pcap4j-core</artifactId>
  40. <version>1.8.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.pcap4j</groupId>
  44. <artifactId>pcap4j-packetfactory-static</artifactId>
  45. <version>1.8.2</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>db</groupId>
  49. <artifactId>probe</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. <scope>compile</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.netty</groupId>
  55. <artifactId>netty-transport-native-epoll</artifactId>
  56. </dependency>
  57. </dependencies>
  58. <build>
  59. <plugins>
  60. <plugin>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-maven-plugin</artifactId>
  63. <version>2.3.7.RELEASE</version>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>repackage</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. <configuration>
  72. <excludes>
  73. <exclude>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. </exclude>
  77. </excludes>
  78. </configuration>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>