klaw-message-entity
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.klaw</groupId> <artifactId>klaw-message-entity</artifactId> <version>5.2.1-RELEASE</version> </dependency>
<?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"> <parent> <artifactId>klaw-common-entity</artifactId> <groupId>cn.klaw</groupId> <version>5.2.1-RELEASE</version> <relativePath>../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>klaw-message-entity</artifactId> <dependencies> <dependency> <groupId>org.dom4j</groupId> <artifactId>dom4j</artifactId> <version>${dom4j.version}</version> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>${okhttp3.version}</version> </dependency> </dependencies> <profiles> <profile> <id>boot3</id> <activation> <jdk>[17,)</jdk> </activation> <dependencies> <dependency> <groupId>com.sun.mail</groupId> <artifactId>jakarta.mail</artifactId> </dependency> </dependencies> </profile> <profile> <id>boot2</id> <activation> <jdk>(,17)</jdk> </activation> <dependencies> <dependency> <groupId>com.sun.mail</groupId> <artifactId>javax.mail</artifactId> </dependency> </dependencies> </profile> </profiles> <!--用于发布:开源协议...--> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <!-- 项目描述 --> <name>klaw-common-message-entity</name> <description>klaw-common-message-entity</description> <url>https://gitee.com/klaw2023/klaw-common.git</url> <!--用于发布:项目链接--> <scm> <url>https://gitee.com/klaw2023/klaw-common.git</url> <connection>https://gitee.com/klaw2023/klaw-common.git</connection> </scm> <!--用于发布:开发者信息--> <developers> <developer> <id>klaw</id> <name>klaw</name> <email>klawmaven@outlook.com</email> <roles> <role>Project Manager</role> <role>Architect</role> </roles> </developer> </developers> </project>