pom.xml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <maven.compiler.source>17</maven.compiler.source>
  21. <maven.compiler.target>17</maven.compiler.target>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>cn.reghao.jutil</groupId>
  28. <artifactId>jdk</artifactId>
  29. <version>jdk17-SNAPSHOT</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <optional>true</optional>
  35. <version>1.18.42</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>ch.qos.logback</groupId>
  39. <artifactId>logback-core</artifactId>
  40. <version>1.4.14</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>ch.qos.logback</groupId>
  44. <artifactId>logback-classic</artifactId>
  45. <version>1.4.14</version>
  46. </dependency>
  47. </dependencies>
  48. <distributionManagement>
  49. <repository>
  50. <id>maven-local-hosted</id>
  51. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  52. </repository>
  53. </distributionManagement>
  54. </project>