html-exporter icon indicating copy to clipboard operation
html-exporter copied to clipboard

Exclude logback.xml from the published jar

Open shitikanth opened this issue 3 years ago • 0 comments

Libraries should not be packaging logback.xml since users importing the library as a dependency lose control of their logging configuration.

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-jar-plugin</artifactId>
                    <configuration>
                        <excludes>
                            <exclude>**/logback.xml</exclude>
                        </excludes>
                    </configuration>
                </plugin>

shitikanth avatar Dec 23 '22 08:12 shitikanth