2024-12-02 23:29:18 +08:00
|
|
|
<?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>
|
|
|
|
|
|
2025-07-09 23:58:50 +08:00
|
|
|
<groupId>io.github.4ra1n</groupId>
|
2024-12-02 23:29:18 +08:00
|
|
|
<artifactId>class-obf</artifactId>
|
2025-10-14 21:10:42 +08:00
|
|
|
<version>1.9.0</version>
|
2024-12-02 23:29:18 +08:00
|
|
|
<packaging>jar</packaging>
|
2025-07-10 00:07:48 +08:00
|
|
|
<description>
|
|
|
|
|
A comprehensive Java class obfuscation tool that supports
|
|
|
|
|
method/field/parameter reference analysis and renaming obfuscation,
|
|
|
|
|
string extraction with AES encryption and runtime decryption,
|
2025-09-10 21:51:27 +08:00
|
|
|
integer XOR obfuscation, junk code, method and field hiding,
|
2025-07-10 00:07:48 +08:00
|
|
|
Features simple configuration and easy-to-use interface.
|
|
|
|
|
</description>
|
2025-07-09 23:58:50 +08:00
|
|
|
<name>class-obf</name>
|
|
|
|
|
<url>https://github.com/4ra1n/class-obf</url>
|
|
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>GNU General Public License v3.0</name>
|
|
|
|
|
<url>https://www.gnu.org/licenses/gpl-3.0.html</url>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<name>4ra1n</name>
|
|
|
|
|
<email>emyiqing@gmail.com</email>
|
|
|
|
|
<url>https://github.com/4ra1n</url>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<connection>scm:git:git://github.com/4ra1n/class-obf.git</connection>
|
|
|
|
|
<developerConnection>scm:git:ssh://github.com:4ra1n/class-obf.git</developerConnection>
|
2025-07-10 00:07:48 +08:00
|
|
|
<url>https://github.com/4ra1n/class-obf/tree/master</url>
|
2025-07-09 23:58:50 +08:00
|
|
|
</scm>
|
2024-12-02 23:29:18 +08:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- Dependencies Version -->
|
2024-12-04 11:00:36 +08:00
|
|
|
<asm.version>9.7.1</asm.version>
|
2024-12-02 23:29:18 +08:00
|
|
|
<jcommander.version>1.82</jcommander.version>
|
2025-02-26 15:46:19 +08:00
|
|
|
<snake.yaml.version>2.4</snake.yaml.version>
|
2024-12-02 23:29:18 +08:00
|
|
|
<!-- Java Compiler Version -->
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
2025-01-02 22:36:48 +08:00
|
|
|
<!-- Maven Build Version -->
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin -->
|
2025-07-09 23:58:50 +08:00
|
|
|
<maven.resources.version>3.3.1</maven.resources.version>
|
2025-01-02 22:36:48 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-assembly-plugin -->
|
2025-07-09 23:58:50 +08:00
|
|
|
<maven.assembly.version>3.7.1</maven.assembly.version>
|
2025-01-02 22:36:48 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-compiler-plugin -->
|
2025-07-09 23:58:50 +08:00
|
|
|
<maven.compiler.version>3.13.0</maven.compiler.version>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-javadoc-plugin -->
|
|
|
|
|
<maven.javadoc.version>3.10.0</maven.javadoc.version>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-source-plugin -->
|
|
|
|
|
<maven.source.version>3.3.1</maven.source.version>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin -->
|
|
|
|
|
<maven.gpg.version>3.2.6</maven.gpg.version>
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.sonatype.central/central-publishing-maven-plugin -->
|
|
|
|
|
<sonatype.version>0.8.0</sonatype.version>
|
2024-12-02 23:29:18 +08:00
|
|
|
<!-- Encoding -->
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<!-- Main -->
|
|
|
|
|
<main.name>me.n1ar4.clazz.obfuscator.Main</main.name>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2025-07-09 23:58:50 +08:00
|
|
|
<distributionManagement>
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>ossrh</id>
|
|
|
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
2024-12-02 23:29:18 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
|
<version>${asm.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
|
<artifactId>asm-commons</artifactId>
|
|
|
|
|
<version>${asm.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.beust</groupId>
|
|
|
|
|
<artifactId>jcommander</artifactId>
|
|
|
|
|
<version>${jcommander.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.yaml</groupId>
|
|
|
|
|
<artifactId>snakeyaml</artifactId>
|
|
|
|
|
<version>${snake.yaml.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
2025-01-02 22:36:48 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
<version>${maven.resources.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<version>${maven.assembly.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>${maven.compiler.version}</version>
|
|
|
|
|
</plugin>
|
2024-12-02 23:29:18 +08:00
|
|
|
<plugin>
|
2025-07-09 23:58:50 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>${maven.javadoc.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<version>${maven.source.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<version>${maven.gpg.version}</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
|
|
|
<version>${sonatype.version}</version>
|
2024-12-02 23:29:18 +08:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2025-07-09 23:58:50 +08:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2024-12-02 23:29:18 +08:00
|
|
|
<configuration>
|
2025-07-09 23:58:50 +08:00
|
|
|
<doclint>none</doclint>
|
2024-12-02 23:29:18 +08:00
|
|
|
</configuration>
|
2025-07-09 23:58:50 +08:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>attach-sources</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>sign</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2024-12-02 23:29:18 +08:00
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>build</id>
|
|
|
|
|
<configuration>
|
|
|
|
|
<attach>false</attach>
|
|
|
|
|
<appendAssemblyId>true</appendAssemblyId>
|
|
|
|
|
<descriptorRefs>
|
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
|
</descriptorRefs>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
|
|
|
|
<mainClass>${main.name}</mainClass>
|
|
|
|
|
</manifest>
|
|
|
|
|
<manifestEntries>
|
|
|
|
|
<Multi-Release>true</Multi-Release>
|
|
|
|
|
</manifestEntries>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>single</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2025-07-09 23:58:50 +08:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<publishingServerId>central</publishingServerId>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2024-12-02 23:29:18 +08:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|