pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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>web</module>
  11. <module>common</module>
  12. <module>agent</module>
  13. <module>deployer</module>
  14. <module>logstash</module>
  15. </modules>
  16. <packaging>pom</packaging>
  17. <name>bnt</name>
  18. <description>a standalone WebApplication</description>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <maven.compiler.source>11</maven.compiler.source>
  23. <maven.compiler.target>11</maven.compiler.target>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <version>1.18.16</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>ch.qos.logback</groupId>
  34. <artifactId>logback-core</artifactId>
  35. <version>1.2.3</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>ch.qos.logback</groupId>
  39. <artifactId>logback-classic</artifactId>
  40. <version>1.2.3</version>
  41. </dependency>
  42. </dependencies>
  43. <distributionManagement>
  44. <repository>
  45. <id>maven-local-hosted</id>
  46. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  47. </repository>
  48. </distributionManagement>
  49. </project>