0

我已经使用 antrun-plugin maven 插件启用了混淆。keep-names我的allatori-config.xml文件中没有:

<config>
 <keep-names>
 </keep-names>
  <jars>
    <jar in="${obf.jar}" out="${obf.jar}"/>
  </jars>
  <property name="log-file" value="target/allatori-log.xml"/>
</config>

这是我的 Maven 插件配置的外观:

   <plugin>
         <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-antrun-plugin</artifactId>
           <version>1.6</version>
           <executions>
             <execution>
              <phase>package</phase>
               <id>obfuscate2</id>
                <configuration>
                 <target unless="${obfuscation.skip}">
                   <echo message="running allatori"/>
                   <property name="obf.jar" value="target/XYZ-${project.version}.jar"/>
                   <property name="runtime_classpath" refid="maven.runtime.classpath"/>
                   <taskdef name="allatori" classname="com.allatori.ant.ObfuscatorTask" classpath="${env.ALLATORI_LIB}/allatori.jar:${runtime_classpath}"/>
                   <allatori config="${basedir}/allatori-config.xml"/>
                 </target>
               </configuration>
               <goals>
                 <goal>run</goal>
               </goals>
             </execution>
          </executions>
       </plugin>

我有 2 个模块(比如 A 和 B),我想对其执行混淆。现在模块 A 已成功混淆,但模块 B(依赖于模块 A)无法编译说“找不到符号”或“包 com.mycomp.xyz.schema 不存在”(这些包属于模块 A )。

是不是这样,如果稍后使用的模块首先被混淆,那么依赖模块无法获得依赖关系,或者我缺少什么?

4

1 回答 1

0

所以它说它找不到包裹,这是非常明显的原因。包装及其内容已经被混淆了。解决方案是将那些被引用的对象放在 中,<keep-names>这样它们就不会被混淆。

于 2017-08-03T11:55:46.803 回答