Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
尝试使用 Proguard Maven 插件时出现 OutOfMemoryErrors。我尝试通过将 MAVEN_OPTS 环境变量设置为 -Xmx2g 来为 Maven 分配更多内存,但这没有任何区别。我假设 proguard 必须在单独的进程中运行。
据我所知 proguard-maven-plugin 有一个单独的配置条目:
<plugin> <groupId>com.pyx4me</groupId> <artifactId>proguard-maven-plugin</artifactId> <version>2.0.4</version> ... <configuration> <maxMemory>576m</maxMemory> </configuration> </plugin>
你是对的,proguard 在一个分叉的进程中运行。