liteagent_sdk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.litevar.liteagent</groupId> <artifactId>liteagent_sdk</artifactId> <version>0.2.0</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"> <modelVersion>4.0.0</modelVersion> <groupId>com.litevar.liteagent</groupId> <artifactId>liteagent_sdk</artifactId> <version>0.2.0</version> <name>LiteAgentSdk</name> <url>https://github.com/LiteVar/LiteAgent/tree/master/lite_agent_sdk/java</url> <packaging>jar</packaging> <description>LiteAgent SDK for Java</description> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>6.2.6</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webflux</artifactId> <version>6.2.6</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.18.3</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <!--源码包随着项目打成的iar包安装到本地仓库或者私服、公服--> <attach>true</attach> </configuration> <executions> <execution> <phase>compile</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <!-- 禁用严格语法检测--> <doclint>none</doclint> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <licenses> <license> <name>MIT</name> <url>https://mitsloan.mit.edu/licensing</url> </license> </licenses> <developers> <developer> <name>LiteVar</name> <email>litevar@163.com</email> <url>https://github.com/LiteVar/LiteAgent/tree/master/lite_agent_sdk/java</url> </developer> </developers> <scm> <connection>scm:git@github.com/LiteVar/LiteAgent.git</connection> <developerConnection>scm:git@github.com/LiteVar/LiteAgent.git</developerConnection> <url>https://github.com/LiteVar/LiteAgent</url> </scm> </project>