pom.xml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. </dependencies>
  33. <distributionManagement>
  34. <repository>
  35. <id>maven-local-hosted</id>
  36. <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
  37. </repository>
  38. </distributionManagement>
  39. </project>