pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <module>admin-api</module>
  19. </modules>
  20. <packaging>pom</packaging>
  21. <name>bnt</name>
  22. <description>a standalone WebApplication</description>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  26. <maven.compiler.source>11</maven.compiler.source>
  27. <maven.compiler.target>11</maven.compiler.target>
  28. </properties>
  29. <dependencies>
  30. <dependency>
  31. <groupId>cn.reghao.jutil</groupId>
  32. <artifactId>jdk</artifactId>
  33. <version>1.0.0-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.reghao.jutil</groupId>
  37. <artifactId>tool</artifactId>
  38. <version>1.0.0-SNAPSHOT</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. <version>1.18.0</version>
  44. <scope>provided</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>ch.qos.logback</groupId>
  48. <artifactId>logback-core</artifactId>
  49. <version>1.2.3</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>ch.qos.logback</groupId>
  53. <artifactId>logback-classic</artifactId>
  54. <version>1.2.3</version>
  55. </dependency>
  56. </dependencies>
  57. <distributionManagement>
  58. <repository>
  59. <id>maven-local-hosted</id>
  60. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  61. </repository>
  62. </distributionManagement>
  63. </project>