com.guicedee.guicedservlets.implementations.GuicedServletModuleExclusions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guiced-servlets Show documentation
Show all versions of guiced-servlets Show documentation
An integration library for Servlets in the Guiced Injection Framework
package com.guicedee.guicedservlets.implementations;
import com.guicedee.guicedinjection.interfaces.IGuiceScanModuleExclusions;
import jakarta.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;
public class GuicedServletModuleExclusions
implements IGuiceScanModuleExclusions
{
@Override
public @NotNull Set excludeModules()
{
Set strings = new HashSet<>();
strings.add("com.guicedee.guicedservlets");
strings.add("com.google.guice.extensions.servlet");
strings.add("com.guicedee.guicedinjection");
strings.add("com.guicedee.logmaster");
strings.add("com.google.guice");
strings.add("java.logging");
strings.add("jakarta.servlet.api");
strings.add("aopalliance");
strings.add("java.validation");
return strings;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy