pom.xml 2.0 KB

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