org.codehaus.mojo.javacc.ForkedJvmPGCC Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-javacc-maven-plugin Show documentation
Show all versions of ph-javacc-maven-plugin Show documentation
Maven 3 Plugin for processing JavaCC grammar files.
package org.codehaus.mojo.javacc;
import javax.annotation.Nullable;
import org.slf4j.LoggerFactory;
import com.helger.commons.id.IHasID;
import com.helger.security.messagedigest.EMessageDigestAlgorithm;
/**
* Special implementation of {@link ForkedJvm} that adds some default class path
* entries.
*/
class ForkedJvmPGCC extends ForkedJvm
{
public ForkedJvmPGCC ()
{
addClassPathEntry (IHasID.class);
addClassPathEntry (EMessageDigestAlgorithm.class);
addClassPathEntry (LoggerFactory.class);
addClassPathEntry (Nullable.class);
}
}