All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.guicedee.guicedservlets.implementations.GuicedServletModuleExclusions Maven / Gradle / Ivy

There is a newer version: 62
Show newest version
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