HookTool
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.hchenx</groupId> <artifactId>HookTool</artifactId> <version>0.9.9.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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> <packaging>jar</packaging> <groupId>io.github.hchenx</groupId> <artifactId>HookTool</artifactId> <version>0.9.9.2</version> <name>HookTool</name> <description>基于 Xposed 而来的 Hook 工具!</description> <url>https://github.com/HChenX/HookTool</url> <licenses> <license> <name>GNU General Public License v3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.txt</url> </license> </licenses> <developers> <developer> <id>HChenX</id> <name>HChenX</name> <email>HChen_LXi@outlook.com</email> <roles> <role>Project Manager</role> <role>Architect</role> </roles> </developer> </developers> <scm> <connection>https://github.com/HChenX/HookTool.git</connection> <developerConnection>scm:git:ssh://git@github.com:HChenX/HookTool.git</developerConnection> <url>https://github.com/HChenX/HookTool</url> </scm> <properties> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>de.robv.android.xposed</groupId> <artifactId>api</artifactId> <version>82</version> <scope>compile</scope> </dependency> <dependency> <groupId>androidx.annotation</groupId> <artifactId>annotation-jvm</artifactId> <version>1.8.0</version> </dependency> <dependency> <groupId>android</groupId> <artifactId>android</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> </dependencies> <repositories> <repository> <id>central</id> <url>https://repo.maven.apache.org/maven2</url> </repository> <repository> <id>xposed-repo</id> <url>https://api.xposed.info</url> </repository> <repository> <id>google</id> <url>https://maven.google.com</url> </repository> </repositories> <build> <!-- 指定源代码目录 --> <sourceDirectory>app/src/main/java</sourceDirectory> <plugins> <!-- central发布插件 --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.5.0</version> <extensions>true</extensions> <configuration> <publishingServerId>HChenX</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> <!-- source源码插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!-- javadoc插件 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.7.0</version> <configuration> <charset>UTF-8</charset> <docencoding>UTF-8</docencoding> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <doclint>none</doclint> <docencoding>UTF-8</docencoding> <charset>UTF-8</charset> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <configuration> <executable>C:\Program Files\Git\usr\bin\gpg.exe</executable> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>