| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>cn.reghao.bnt</groupId>
- <artifactId>bnt</artifactId>
- <version>1.0.0</version>
- <modules>
- <module>web</module>
- <module>common</module>
- <module>agent</module>
- <module>deployer</module>
- </modules>
- <packaging>pom</packaging>
- <name>bnt</name>
- <description>a standalone WebApplication</description>
- <properties>
- <maven.compiler.source>17</maven.compiler.source>
- <maven.compiler.target>17</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>cn.reghao.jutil</groupId>
- <artifactId>jdk</artifactId>
- <version>jdk17-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- <version>1.18.42</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-core</artifactId>
- <version>1.4.14</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>1.4.14</version>
- </dependency>
- </dependencies>
- <distributionManagement>
- <repository>
- <id>maven-local-hosted</id>
- <url>http://nexus.reghao.cn/repository/maven-local-hosted/</url>
- </repository>
- </distributionManagement>
- </project>
|