com.jwebmp.guicedservlets.jsf.implementations.GuicedServletsJSFModuleExclusions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guiced-servlets-jsf Show documentation
Show all versions of guiced-servlets-jsf Show documentation
Configures Guice Servlet for JSF
package com.jwebmp.guicedservlets.jsf.implementations;
import com.jwebmp.guicedinjection.interfaces.IGuiceScanJarExclusions;
import com.jwebmp.guicedinjection.interfaces.IGuiceScanModuleExclusions;
import javax.validation.constraints.NotNull;
import java.util.HashSet;
import java.util.Set;
public class GuicedServletsJSFModuleExclusions
implements IGuiceScanModuleExclusions,
IGuiceScanJarExclusions
{
@Override
public @NotNull Set excludeJars()
{
Set strings = new HashSet<>();
strings.add("guiced-servlets-jsf-*");
strings.add("javax.faces-*");
strings.add("javax.el-*");
return strings;
}
@Override
public @NotNull Set excludeModules()
{
Set strings = new HashSet<>();
strings.add("com.jwebmp.guicedservlets.jsf");
strings.add("com.jwebmp.guicedservlets");
strings.add("com.google.guice");
strings.add("javax.faces");
strings.add("javax.servlet.api");
strings.add("com.google.guice.extensions.servlet");
strings.add("com.jwebmp.logmaster");
strings.add("java.logging");
strings.add("javax.el");
strings.add("java.desktop");
strings.add("com.jwebmp.guicedinjection");
strings.add("java.validation");
return strings;
}
}