pom.xml 1.9 KB

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