Hi! Is there a way you could get rid of the slf4j-simple dependency? When I

Hi! Is there a way you could get rid of the slf4j-simple dependency?
When I start my application I get

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/C:/Users/Sebastian/.m2/repository/org/slf4j/slf4j-simple/1.7.32/slf4j-simple-1.7.32.jar!/org/slf4j/impl/StaticLoggerBinder.class]

SLF4J: Found binding in [jar:file:/C:/Users/Sebastian/.m2/repository/ch/qos/logback/logback-classic/1.2.4/logback-classic-1.2.4.jar!/org/slf4j/impl/StaticLoggerBinder.class]

The workaround is to exclude the dependency in the pom.xml

I have the same problem.... has this been solved?

It worked for me.

<dependency>

            <groupId>org.vaadin</groupId>

            <artifactId>textfieldformatter</artifactId>

            <version>5.4.0</version>

            <exclusions>

                <exclusion>

                    <groupId>org.slf4j</groupId>

                    <artifactId>slf4j-simple</artifactId>

                </exclusion>

            </exclusions>

         </dependency>

This dependency has been marked as optional in the newest version of the Addon (23.3.0)