Hi I'm running into the issue described in <https:...
# general
b
Hi I'm running into the issue described in https://stackoverflow.com/questions/48033792/log4j2-error-statuslogger-unrecognized-conversion-specifier using
jvm_binary
and was wondering if anyone could help translate this maven shade plugin syntax to the correct pants option. XML for solution in Stack Overflow post:
Copy code
<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <version>3.1.0</version>
        <configuration>
            <createDependencyReducedPom>false</createDependencyReducedPom>
            <filters>
                <filter>
                    <artifact>*:*</artifact>
                    <excludes>
                        <exclude>**/Log4j2Plugins.dat</exclude>
                    </excludes>
                </filter>
            </filters>
        </configuration>
        ...
    </plugin>