Skip to content

Commit

Permalink
unidbg
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahaochan committed Apr 3, 2024
1 parent c1fa9fc commit 123a31c
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
57 changes: 57 additions & 0 deletions ahao-unidbg/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<?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>ahao-all</artifactId>
<groupId>moe.ahao</groupId>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<version>1.0.0</version>

<artifactId>ahao-unidbg</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-api</artifactId>
<version>0.9.7</version>
</dependency>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-android</artifactId>
<version>0.9.7</version>
</dependency>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-kvm</artifactId>
<version>0.9.7</version>
</dependency>
<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-dynarmic</artifactId>
<version>0.9.7</version>
</dependency>

<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-hypervisor</artifactId>
<version>0.9.7</version>
</dependency>

<dependency>
<groupId>com.github.zhkl0228</groupId>
<artifactId>unidbg-unicorn2</artifactId>
<version>0.9.7</version>
</dependency>

<dependency>
<groupId>net.dongliu</groupId>
<artifactId>apk-parser</artifactId>
<version>2.6.10</version>
</dependency>
</dependencies>
</project>
4 changes: 4 additions & 0 deletions ahao-unidbg/src/main/java/moe/ahao/unidbg/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package moe.ahao.unidbg;

public class Main {
}
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
<module>ahao-storm</module>
<module>ahao-tend-consistency</module>
<module>ahao-thrift</module>
<module>ahao-unidbg</module>
<module>ahao-unit-test</module>
<module>ahao-web</module>

Expand Down

0 comments on commit 123a31c

Please sign in to comment.