pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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>cn.reghao.bnt</groupId>
  7. <artifactId>bnt</artifactId>
  8. <version>1.0.0</version>
  9. <modules>
  10. <module>common</module>
  11. <module>web</module>
  12. <module>agent</module>
  13. <module>logstash</module>
  14. <module>deployer</module>
  15. <module>spider</module>
  16. <module>browser</module>
  17. <module>crawler</module>
  18. </modules>
  19. <packaging>pom</packaging>
  20. <name>bnt</name>
  21. <description>a standalone WebApplication</description>
  22. <properties>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. <maven.compiler.source>11</maven.compiler.source>
  26. <maven.compiler.target>11</maven.compiler.target>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>cn.reghao.jutil</groupId>
  31. <artifactId>jdk</artifactId>
  32. <version>1.0.0-SNAPSHOT</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>cn.reghao.jutil</groupId>
  36. <artifactId>tool</artifactId>
  37. <version>1.0.0-SNAPSHOT</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.projectlombok</groupId>
  41. <artifactId>lombok</artifactId>
  42. <version>1.18.0</version>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>ch.qos.logback</groupId>
  47. <artifactId>logback-core</artifactId>
  48. <version>1.2.3</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>ch.qos.logback</groupId>
  52. <artifactId>logback-classic</artifactId>
  53. <version>1.2.3</version>
  54. </dependency>
  55. </dependencies>
  56. </project>