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

com.guicedee.services.hibernate.GuiceInjectionMetaInfScanner Maven / Gradle / Ivy

Go to download

JPMS Module-Info's for a few of the Jakarta Libraries just until they add them in themselves

There is a newer version: 62
Show newest version
package com.guicedee.services.hibernate;

import com.guicedee.guicedinjection.interfaces.IPathContentsScanner;

import java.util.HashSet;
import java.util.Set;

public class GuiceInjectionMetaInfScanner
		implements IPathContentsScanner
{
	@Override
	public Set searchFor()
	{
		Set strings = new HashSet<>();
		strings.add("META-INF");
		return strings;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy